Skip to content

Commit

Permalink
Release version to v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fgrosse committed Aug 23, 2024
1 parent ba3f798 commit ec9138d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.'
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.'
Expand Down

0 comments on commit ec9138d

Please sign in to comment.