Skip to content

Commit

Permalink
Bump to 2.2.0. Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
devblackops committed Jul 1, 2020
1 parent dba319a commit fe1bf81
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.2.0] - 2020-06-30

### Fixed

- [**#PR8**](https://github.com/devblackops/github-action-psscriptanalyzer/pull/8) - Update checkout action to v2 (`actions/checkout@v2`) (via [@alagoutte](https://github.com/alagoutte))

### Changed

- [**#PR10**](https://github.com/devblackops/github-action-psscriptanalyzer/pull/10) - Updated PSScriptAnalyzer to `1.19.0` (via [@alagoutte](https://github.com/alagoutte))

- [**#PR7**](https://github.com/devblackops/github-action-psscriptanalyzer/pull/7) - Updated PSScriptAnalyzer to `1.19.0` (via [@alagoutte](https://github.com/alagoutte))

- [**#PR6**](https://github.com/devblackops/github-action-psscriptanalyzer/pull/6) - Updated PowerShell Docker iamge to `7.0.1` (via [@alagoutte](https://github.com/alagoutte))

## [2.1.1] - 2020-05-15

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LABEL "com.github.actions.icon"="check-square"
LABEL "com.github.actions.color"="green"

LABEL "name" = "github-action-psscriptanalyzer"
LABEL "version" = "2.0.0"
LABEL "version" = "2.2.0"
LABEL "repository" = "https://github.com/devblackops/github-action-psscriptanalyzer"
LABEL "homepage" = "https://github.com/PowerShell/PSScriptAnalyzer"
LABEL "maintainer" = "Brandon Olin <brandon@devblackops.io>"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: lint
uses: docker://devblackops/github-action-psscriptanalyzer:2.0.0
uses: docker://devblackops/github-action-psscriptanalyzer:2.2.0
with:
repoToken: ${{ secrets.GITHUB_TOKEN }}
```
Expand All @@ -94,4 +94,4 @@ jobs:
![](media/example.png)

[github-actions-badge]: https://github.com/devblackops/github-action-psscriptanalyzer/workflows/CI/badge.svg
[github-actions-build]: https://github.com/devblackops/github-action-psscriptanalyzer/actions
[github-actions-build]: https://github.com/devblackops/github-action-psscriptanalyzer/actions
4 changes: 2 additions & 2 deletions psakeFile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ task Init {
$script:dockerAcct = 'devblackops'
$script:imageName = $env:BHProjectName
$script:dockerRepo = "$dockerAcct/$imageName"
$script:version = '2.0.0'
$script:version = '2.2.0'
}

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

0 comments on commit fe1bf81

Please sign in to comment.