Skip to content

Commit dca12e1

Browse files
Bump codecov/codecov-action from 1 to 4 (#314)
* Bump codecov/codecov-action from 1 to 4 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v1...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Pass token and fail on error for ci-future * Pass token and error out on failure for current --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andreas Noack <[email protected]>
1 parent a3262a0 commit dca12e1

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci-future.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ jobs:
4242
- uses: julia-actions/julia-buildpkg@v1
4343
- uses: julia-actions/julia-runtest@v1
4444
- uses: julia-actions/julia-processcoverage@v1
45-
- uses: codecov/codecov-action@v1
45+
- uses: codecov/codecov-action@v4
4646
with:
47+
fail_ci_if_error: true
4748
file: lcov.info
49+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
- uses: julia-actions/julia-buildpkg@v1
4848
- uses: julia-actions/julia-runtest@v1
4949
- uses: julia-actions/julia-processcoverage@v1
50-
- uses: codecov/codecov-action@v1
50+
- uses: codecov/codecov-action@v4
5151
with:
52+
fail_ci_if_error: true
5253
file: lcov.info
54+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)