Skip to content

Commit fe1bf81

Browse files
committed
Bump to 2.2.0. Update changelog
1 parent dba319a commit fe1bf81

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ 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.2.0] - 2020-06-30
9+
10+
### Fixed
11+
12+
- [**#PR8**](https://github.com/devblackops/github-action-psscriptanalyzer/pull/8) - Update checkout action to v2 (`actions/checkout@v2`) (via [@alagoutte](https://github.com/alagoutte))
13+
14+
### Changed
15+
16+
- [**#PR10**](https://github.com/devblackops/github-action-psscriptanalyzer/pull/10) - Updated PSScriptAnalyzer to `1.19.0` (via [@alagoutte](https://github.com/alagoutte))
17+
18+
- [**#PR7**](https://github.com/devblackops/github-action-psscriptanalyzer/pull/7) - Updated PSScriptAnalyzer to `1.19.0` (via [@alagoutte](https://github.com/alagoutte))
19+
20+
- [**#PR6**](https://github.com/devblackops/github-action-psscriptanalyzer/pull/6) - Updated PowerShell Docker iamge to `7.0.1` (via [@alagoutte](https://github.com/alagoutte))
21+
822
## [2.1.1] - 2020-05-15
923

1024
### 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.0.0"
13+
LABEL "version" = "2.2.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>"

README.md

Lines changed: 2 additions & 2 deletions
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.0.0
75+
uses: docker://devblackops/github-action-psscriptanalyzer:2.2.0
7676
with:
7777
repoToken: ${{ secrets.GITHUB_TOKEN }}
7878
```
@@ -94,4 +94,4 @@ jobs:
9494
![](media/example.png)
9595

9696
[github-actions-badge]: https://github.com/devblackops/github-action-psscriptanalyzer/workflows/CI/badge.svg
97-
[github-actions-build]: https://github.com/devblackops/github-action-psscriptanalyzer/actions
97+
[github-actions-build]: https://github.com/devblackops/github-action-psscriptanalyzer/actions

psakeFile.ps1

Lines changed: 2 additions & 2 deletions
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.0.0'
10+
$script:version = '2.2.0'
1111
}
1212

1313
task Build -depends Init {
@@ -32,4 +32,4 @@ task Push -depends Build, Login {
3232
task ? {
3333
'Available tasks:'
3434
$psake.context.Peek().Tasks.Keys | Sort-Object
35-
}
35+
}

0 commit comments

Comments
 (0)