diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a18a1d..c7be0b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +_Nothing so far_ + +## [v1.1.1] - 2024-08-23 - Fix issue when the workflow file is renamed (fgrosse/go-coverage-report#41) ## [v1.1.0] - 2024-07-25 @@ -22,7 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [v1.0.0] - 2024-03-18 - Initial release -[Unreleased]: https://github.com/fgrosse/go-coverage-report/compare/v1.1.0...HEAD +[Unreleased]: https://github.com/fgrosse/go-coverage-report/compare/v1.1.1...HEAD +[v1.1.1]: https://github.com/fgrosse/go-coverage-report/compare/v1.1.0...v1.1.1 [v1.1.0]: https://github.com/fgrosse/go-coverage-report/compare/v1.0.2...v1.1.0 [v1.0.2]: https://github.com/fgrosse/go-coverage-report/compare/v1.0.1...v1.0.2 [v1.0.1]: https://github.com/fgrosse/go-coverage-report/compare/v1.0.0...v1.0.1 diff --git a/README.md b/README.md index d6e606c..5f12d5a 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ jobs: actions: read # to download code coverage results from "test" job pull-requests: write # write permission needed to comment on PR steps: - - uses: fgrosse/go-coverage-report@v1.0.2 # Consider using a Git revision for maximum security + - uses: fgrosse/go-coverage-report@v1.1.1 # Consider using a Git revision for maximum security with: coverage-artifact-name: "code-coverage" # can be omitted if you used this default value coverage-file-name: "coverage.txt" # can be omitted if you used this default value @@ -116,7 +116,7 @@ inputs: version: description: 'The exact version of the go-coverage-report tool to use.' required: true - default: "v1.0.2" + default: "v1.1.1" sha256sum: description: 'Optional SHA256 checksum of the tarball when downloading the go-coverage-report binary.' diff --git a/action.yml b/action.yml index 7124acf..a6c90c7 100644 --- a/action.yml +++ b/action.yml @@ -9,7 +9,7 @@ inputs: version: description: 'The exact version tag of the go-coverage-report tool to use.' required: true - default: "v1.0.2" + default: "v1.1.1" sha256sum: description: 'Optional SHA256 checksum of the tarball when downloading the go-coverage-report binary.'