Skip to content

Commit ff33f0f

Browse files
committed
Release version v1.0.2
1 parent 7a7fdb6 commit ff33f0f

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
_Nothing yet_
9+
10+
## [v1.0.2] - 2024-06-11
811
- Fix issue when coverage artifact contains more files than just the `coverage.txt` file (fgrosse/go-coverage-report#25)
912
- Improve `README.md` information about limitations of this action (fgrosse/go-coverage-report#24 and fgrosse/go-coverage-report#15)
1013

@@ -14,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1417
## [v1.0.0] - 2024-03-18
1518
- Initial release
1619

17-
[Unreleased]: https://github.com/fgrosse/go-coverage-report/compare/v1.0.1...HEAD
20+
[Unreleased]: https://github.com/fgrosse/go-coverage-report/compare/v1.0.2...HEAD
21+
[v1.0.2]: https://github.com/fgrosse/go-coverage-report/compare/v1.0.1...v1.0.2
1822
[v1.0.1]: https://github.com/fgrosse/go-coverage-report/compare/v1.0.0...v1.0.1
1923
[v1.0.0]: https://github.com/fgrosse/go-coverage-report/releases/tag/v1.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
runs-on: ubuntu-latest
9898
needs: unit_tests # Depends on the artifact uploaded by the "unit_tests" job
9999
steps:
100-
- uses: fgrosse/go-coverage-report@v1.0.1 # Consider using a Git revision for maximum security
100+
- uses: fgrosse/go-coverage-report@v1.0.2 # Consider using a Git revision for maximum security
101101
with:
102102
coverage-artifact-name: "code-coverage" # can be omitted if you used this default value
103103
coverage-file-name: "coverage.txt" # can be omitted if you used this default value
@@ -112,7 +112,7 @@ inputs:
112112
version:
113113
description: 'The exact version of the go-coverage-report tool to use.'
114114
required: true
115-
default: "v1.0.1"
115+
default: "v1.0.2"
116116

117117
sha256sum:
118118
description: 'Optional SHA256 checksum of the tarball when downloading the go-coverage-report binary.'

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
version:
1010
description: 'The exact version tag of the go-coverage-report tool to use.'
1111
required: true
12-
default: "v1.0.1"
12+
default: "v1.0.2"
1313

1414
sha256sum:
1515
description: 'Optional SHA256 checksum of the tarball when downloading the go-coverage-report binary.'

0 commit comments

Comments
 (0)