Skip to content

Commit c35f454

Browse files
committed
bumped module versions
1 parent c3345c7 commit c35f454

File tree

13 files changed

+36
-29
lines changed

13 files changed

+36
-29
lines changed

actions_bootstrap.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ $modulesToInstall = New-Object System.Collections.Generic.List[object]
1616
# https://github.com/pester/Pester
1717
[void]$modulesToInstall.Add(([PSCustomObject]@{
1818
ModuleName = 'Pester'
19-
ModuleVersion = '5.6.1'
19+
ModuleVersion = '5.7.1'
2020
}))
2121
# https://github.com/nightroman/Invoke-Build
2222
[void]$modulesToInstall.Add(([PSCustomObject]@{
2323
ModuleName = 'InvokeBuild'
24-
ModuleVersion = '5.11.3'
24+
ModuleVersion = '5.12.1'
2525
}))
2626
# https://github.com/PowerShell/PSScriptAnalyzer
2727
[void]$modulesToInstall.Add(([PSCustomObject]@{
2828
ModuleName = 'PSScriptAnalyzer'
29-
ModuleVersion = '1.22.0'
29+
ModuleVersion = '1.23.0'
3030
}))
3131
# https://github.com/PowerShell/platyPS
3232
# older version used due to: https://github.com/PowerShell/platyPS/issues/457

docs/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [2.23.0]
8+
## [2.24.0]
99

1010
- Catesta template module changes
1111
- Updated all GitHub actions workflows from `actions/upload-artifact@v3` to `actions/upload-artifact@v4`
12+
- CI/CD Changes:
13+
- Pester bumped from `5.6.1` to `5.7.1`
14+
- InvokeBuild bumped from `5.11.3` to `5.12.1`
15+
- PSScriptAnalyzer bumped from `1.22.0` to `1.23.0`
1216
- Catesta primary module changes
1317
- Updated GitHub actions workflows from `actions/upload-artifact@v3` to `actions/upload-artifact@v4`
18+
- Pester bumped from `5.6.1` to `5.7.1`
19+
- InvokeBuild bumped from `5.11.3` to `5.12.1`
20+
- PSScriptAnalyzer bumped from `1.22.0` to `1.23.0`
1421

1522
## [2.22.2]
1623

docs/Catesta.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Module Name: Catesta
33
Module Guid: 6796b193-9013-468a-b022-837749af2d06
44
Download Help Link: NA
5-
Help Version: 2.23.0
5+
Help Version: 2.24.0
66
Locale: en-US
77
---
88

src/Catesta/Catesta.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'Catesta.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '2.23.0'
15+
ModuleVersion = '2.24.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

src/Catesta/Resources/AWS/install_modules.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
5959
# https://github.com/pester/Pester
6060
[void]$modulesToInstall.Add(([PSCustomObject]@{
6161
ModuleName = 'Pester'
62-
ModuleVersion = '5.6.1'
62+
ModuleVersion = '5.7.1'
6363
BucketName = '<%=$PLASTER_PARAM_S3Bucket%>'
6464
KeyPrefix = ''
6565
}))
@@ -68,13 +68,13 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
6868
%>
6969
[void]$modulesToInstall.Add(([PSCustomObject]@{
7070
ModuleName = 'InvokeBuild'
71-
ModuleVersion = '5.11.3'
71+
ModuleVersion = '5.12.1'
7272
BucketName = '<%=$PLASTER_PARAM_S3Bucket%>'
7373
KeyPrefix = ''
7474
}))
7575
[void]$modulesToInstall.Add(([PSCustomObject]@{
7676
ModuleName = 'PSScriptAnalyzer'
77-
ModuleVersion = '1.22.0'
77+
ModuleVersion = '1.23.0'
7878
BucketName = '<%=$PLASTER_PARAM_S3Bucket%>'
7979
KeyPrefix = ''
8080
}))

src/Catesta/Resources/AppVeyor/actions_bootstrap.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
2323
# https://github.com/pester/Pester
2424
[void]$modulesToInstall.Add(([PSCustomObject]@{
2525
ModuleName = 'Pester'
26-
ModuleVersion = '5.6.1'
26+
ModuleVersion = '5.7.1'
2727
}))
2828
'@
2929
}
3030
%>
3131
# https://github.com/nightroman/Invoke-Build
3232
[void]$modulesToInstall.Add(([PSCustomObject]@{
3333
ModuleName = 'InvokeBuild'
34-
ModuleVersion = '5.11.3'
34+
ModuleVersion = '5.12.1'
3535
}))
3636
# https://github.com/PowerShell/PSScriptAnalyzer
3737
[void]$modulesToInstall.Add(([PSCustomObject]@{
3838
ModuleName = 'PSScriptAnalyzer'
39-
ModuleVersion = '1.22.0'
39+
ModuleVersion = '1.23.0'
4040
}))
4141
# https://github.com/PowerShell/platyPS
4242
# older version used due to: https://github.com/PowerShell/platyPS/issues/457

src/Catesta/Resources/Azure/actions_bootstrap.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
2323
# https://github.com/pester/Pester
2424
[void]$modulesToInstall.Add(([PSCustomObject]@{
2525
ModuleName = 'Pester'
26-
ModuleVersion = '5.6.1'
26+
ModuleVersion = '5.7.1'
2727
}))
2828
'@
2929
}
3030
%>
3131
# https://github.com/nightroman/Invoke-Build
3232
[void]$modulesToInstall.Add(([PSCustomObject]@{
3333
ModuleName = 'InvokeBuild'
34-
ModuleVersion = '5.11.3'
34+
ModuleVersion = '5.12.1'
3535
}))
3636
# https://github.com/PowerShell/PSScriptAnalyzer
3737
[void]$modulesToInstall.Add(([PSCustomObject]@{
3838
ModuleName = 'PSScriptAnalyzer'
39-
ModuleVersion = '1.22.0'
39+
ModuleVersion = '1.23.0'
4040
}))
4141
# https://github.com/PowerShell/platyPS
4242
# older version used due to: https://github.com/PowerShell/platyPS/issues/457

src/Catesta/Resources/Bitbucket/actions_bootstrap.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
2323
# https://github.com/pester/Pester
2424
[void]$modulesToInstall.Add(([PSCustomObject]@{
2525
ModuleName = 'Pester'
26-
ModuleVersion = '5.6.1'
26+
ModuleVersion = '5.7.1'
2727
}))
2828
'@
2929
}
3030
%>
3131
# https://github.com/nightroman/Invoke-Build
3232
[void]$modulesToInstall.Add(([PSCustomObject]@{
3333
ModuleName = 'InvokeBuild'
34-
ModuleVersion = '5.11.3'
34+
ModuleVersion = '5.12.1'
3535
}))
3636
# https://github.com/PowerShell/PSScriptAnalyzer
3737
[void]$modulesToInstall.Add(([PSCustomObject]@{
3838
ModuleName = 'PSScriptAnalyzer'
39-
ModuleVersion = '1.22.0'
39+
ModuleVersion = '1.23.0'
4040
}))
4141
# https://github.com/PowerShell/platyPS
4242
# older version used due to: https://github.com/PowerShell/platyPS/issues/457

src/Catesta/Resources/GitHubActions/actions_bootstrap.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
2323
# https://github.com/pester/Pester
2424
[void]$modulesToInstall.Add(([PSCustomObject]@{
2525
ModuleName = 'Pester'
26-
ModuleVersion = '5.6.1'
26+
ModuleVersion = '5.7.1'
2727
}))
2828
'@
2929
}
3030
%>
3131
# https://github.com/nightroman/Invoke-Build
3232
[void]$modulesToInstall.Add(([PSCustomObject]@{
3333
ModuleName = 'InvokeBuild'
34-
ModuleVersion = '5.11.3'
34+
ModuleVersion = '5.12.1'
3535
}))
3636
# https://github.com/PowerShell/PSScriptAnalyzer
3737
[void]$modulesToInstall.Add(([PSCustomObject]@{
3838
ModuleName = 'PSScriptAnalyzer'
39-
ModuleVersion = '1.22.0'
39+
ModuleVersion = '1.23.0'
4040
}))
4141
# https://github.com/PowerShell/platyPS
4242
# older version used due to: https://github.com/PowerShell/platyPS/issues/457

src/Catesta/Resources/GitHubActionsCodeBuild/actions_bootstrap.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ elseif ($PLASTER_PARAM_Pester-eq '5') {
2323
# https://github.com/pester/Pester
2424
[void]$modulesToInstall.Add(([PSCustomObject]@{
2525
ModuleName = 'Pester'
26-
ModuleVersion = '5.6.1'
26+
ModuleVersion = '5.7.1'
2727
}))
2828
'@
2929
}
3030
%>
3131
# https://github.com/nightroman/Invoke-Build
3232
[void]$modulesToInstall.Add(([PSCustomObject]@{
3333
ModuleName = 'InvokeBuild'
34-
ModuleVersion = '5.11.3'
34+
ModuleVersion = '5.12.1'
3535
}))
3636
# https://github.com/PowerShell/PSScriptAnalyzer
3737
[void]$modulesToInstall.Add(([PSCustomObject]@{
3838
ModuleName = 'PSScriptAnalyzer'
39-
ModuleVersion = '1.22.0'
39+
ModuleVersion = '1.23.0'
4040
}))
4141
# https://github.com/PowerShell/platyPS
4242
# older version used due to: https://github.com/PowerShell/platyPS/issues/457

0 commit comments

Comments
 (0)