diff --git a/CHANGELOG.md b/CHANGELOG.md index a9a02ae20..6f3c22c78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v5.1.0 +### What's Changed +* fix: hide unnecessary error on shasum by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1692 +* build(deps): bump github/codeql-action from 3.27.4 to 3.27.5 by @app/dependabot in https://github.com/codecov/codecov-action/pull/1701 + + +**Full Changelog**: https://github.com/codecov/codecov-action/compare/v5.0.7..v5.1.0 + ## v5.0.7 ### What's Changed * fix: use HEAD_REPO by @thomasrockhu-codecov in https://github.com/codecov/codecov-action/pull/1690 diff --git a/dist/codecov.sh b/dist/codecov.sh index d4e884510..d4664a8b9 100755 --- a/dist/codecov.sh +++ b/dist/codecov.sh @@ -112,7 +112,7 @@ CC_PUBLIC_PGP_KEY=$(curl -s https://keybase.io/codecovsecurity/pgp_keys.asc) then exit_if_error "Could not verify signature. Please contact Codecov if problem continues" fi - if ! (shasum -a 256 -c "${cc_filename}.SHA256SUM" 2>/dev/null || \ + if ! (shasum -a 256 -c "${cc_filename}.SHA256SUM" || \ sha256sum -c "${cc_filename}.SHA256SUM"); then exit_if_error "Could not verify SHASUM. Please contact Codecov if problem continues" diff --git a/src/version b/src/version index 623b52a45..ae900fd1f 100644 --- a/src/version +++ b/src/version @@ -1 +1 @@ -CODECOV_ACTION_VERSION="5.0.7" +CODECOV_ACTION_VERSION="5.1.0"