Skip to content

Commit 2e86144

Browse files
committed
Update dependency versions
1 parent 7774754 commit 2e86144

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

actions_bootstrap.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $modulesToInstall = New-Object System.Collections.Generic.List[object]
1111
# https://github.com/PSAppDeployToolkit/PSAppDeployToolkit
1212
[void]$modulesToInstall.Add(([PSCustomObject]@{
1313
ModuleName = 'PSAppDeployToolkit'
14-
ModuleVersion = '4.1.0'
14+
ModuleVersion = '4.1.5'
1515
}))
1616
# https://github.com/pester/Pester
1717
[void]$modulesToInstall.Add(([PSCustomObject]@{
@@ -26,7 +26,7 @@ $modulesToInstall = New-Object System.Collections.Generic.List[object]
2626
# https://github.com/PowerShell/PSScriptAnalyzer
2727
[void]$modulesToInstall.Add(([PSCustomObject]@{
2828
ModuleName = 'PSScriptAnalyzer'
29-
ModuleVersion = '1.23.0'
29+
ModuleVersion = '1.24.0'
3030
}))
3131
# https://github.com/PowerShell/platyPS
3232
# older version used due to: https://github.com/PowerShell/platyPS/issues/457

src/PSAppDeployToolkit.Tools/ImportsFirst.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $RequiredModules = [System.Collections.ObjectModel.ReadOnlyCollection[Microsoft.
2929
@{ ModuleName = 'Microsoft.PowerShell.Management'; Guid = 'eefcb906-b326-4e99-9f54-8b4bb6ef3c6d'; ModuleVersion = '1.0' }
3030
@{ ModuleName = 'Microsoft.PowerShell.Utility'; Guid = '1da87e53-152b-403e-98dc-74d7b4d63d59'; ModuleVersion = '1.0' }
3131
@{ ModuleName = 'PSAppDeployToolkit'; Guid = '8c3c366b-8606-4576-9f2d-4051144f7ca2'; ModuleVersion = '4.1.5' }
32-
@{ ModuleName = 'PSScriptAnalyzer'; Guid = 'd6245802-193d-4068-a631-8863a4342a18'; ModuleVersion = '1.23.0' }
32+
@{ ModuleName = 'PSScriptAnalyzer'; Guid = 'd6245802-193d-4068-a631-8863a4342a18'; ModuleVersion = '1.24.0' }
3333
)
3434

3535
# Build out lookup table for all cmdlets used within module, starting with the core cmdlets.

src/PSAppDeployToolkit.Tools/Public/Convert-ADTDeployment.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function Convert-ADTDeployment
5454
5555
.NOTES
5656
An active ADT session is NOT required to use this function.
57-
Requires PSScriptAnalyzer module 1.23.0 or later. To install:
57+
Requires PSScriptAnalyzer module 1.24.0 or later. To install:
5858
5959
Install-Module -Name PSScriptAnalyzer -Scope CurrentUser
6060
Install-Module -Name PSScriptAnalyzer -Scope AllUsers

src/PSAppDeployToolkit.Tools/Public/Test-ADTCompatibility.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function Test-ADTCompatibility
4646
4747
.NOTES
4848
An active ADT session is NOT required to use this function.
49-
Requires PSScriptAnalyzer module 1.23.0 or later. To install:
49+
Requires PSScriptAnalyzer module 1.24.0 or later. To install:
5050
5151
Install-Module -Name PSScriptAnalyzer -Scope CurrentUser
5252
Install-Module -Name PSScriptAnalyzer -Scope AllUsers

0 commit comments

Comments
 (0)