Skip to content

Commit 819c15c

Browse files
committed
Bump to 2.3.0 and update changelog
1 parent 5451b3d commit 819c15c

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [2.3.0] - 2020-08-31
9+
10+
### Fixed
11+
12+
- [**#PR13**](https://github.com/devblackops/github-action-psscriptanalyzer/pull/13) - Remove `outputs` section from `action.yml` to resolve error when `outputs` is empty (via [@SleepySysadmin](https://github.com/SleepySysadmin))
13+
14+
### Changed
15+
16+
- Updated docker image to `powershell:7.0.3-ubuntu-18.04`.
17+
18+
- Updated `PSScriptAnalyzer` to `1.19.1`.
19+
820
## [2.2.0] - 2020-06-30
921

1022
### Fixed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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" = "2.2.0"
13+
LABEL "version" = "2.3.0"
1414
LABEL "repository" = "https://github.com/devblackops/github-action-psscriptanalyzer"
1515
LABEL "homepage" = "https://github.com/PowerShell/PSScriptAnalyzer"
1616
LABEL "maintainer" = "Brandon Olin <[email protected]>"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
steps:
7373
- uses: actions/checkout@v2
7474
- name: lint
75-
uses: docker://devblackops/github-action-psscriptanalyzer:2.2.0
75+
uses: docker://devblackops/github-action-psscriptanalyzer:2.3.0
7676
with:
7777
repoToken: ${{ secrets.GITHUB_TOKEN }}
7878
```

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 = '2.2.0'
10+
$script:version = '2.3.0'
1111
}
1212

1313
task Build -depends Init {

0 commit comments

Comments
 (0)