Skip to content

Commit 89e8fbb

Browse files
committed
Hump PS and PSScriptAnalyzer versions
1 parent 3f8db9f commit 89e8fbb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM mcr.microsoft.com/powershell:6.1.0-ubuntu-18.04 as base
1+
FROM mcr.microsoft.com/powershell:6.2.0-ubuntu-18.04 as base
22
SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
33
RUN Set-PSRepository -Name PSGallery -InstallationPolicy Trusted; \
4-
Install-Module PSScriptAnalyzer -RequiredVersion 1.17.1 -Repository PSGallery
4+
Install-Module PSScriptAnalyzer -RequiredVersion 1.18.1 -Repository PSGallery
55

66
FROM base as analyzer
77
LABEL "com.github.actions.name" = "PSScriptAnalyzer"
@@ -10,7 +10,7 @@ LABEL "com.github.actions.icon"="check-square"
1010
LABEL "com.github.actions.color"="green"
1111

1212
LABEL "name" = "github-action-psscriptanalyzer"
13-
LABEL "version" = "1.2.0"
13+
LABEL "version" = "2.0.0"
1414
LABEL "repository" = "https://github.com/devblackops/github-action-psscriptanalyzer"
1515
LABEL "homepage" = "https://github.com/PowerShell/PSScriptAnalyzer"
1616
LABEL "maintainer" = "Brandon Olin <brandon@devblackops.io>"

psakeFile.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ task Init {
77
$script:dockerAcct = 'devblackops'
88
$script:imageName = $env:BHProjectName
99
$script:dockerRepo = "$dockerAcct/$imageName"
10-
$script:version = '1.2.0'
10+
$script:version = '2.0.0'
1111
}
1212

1313
task Build -depends Init {

0 commit comments

Comments
 (0)