Skip to content

Commit 22f4f0b

Browse files
Merge pull request #462 from SciML/dependabot/github_actions/codecov/codecov-action-4
Bump codecov/codecov-action from 3 to 4
2 parents 77fe4ca + 03e2e8b commit 22f4f0b

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ jobs:
4949
- uses: julia-actions/julia-processcoverage@v1
5050
with:
5151
directories: src,ext
52-
- uses: codecov/codecov-action@v3
52+
- uses: codecov/codecov-action@v4
5353
with:
5454
files: lcov.info
55+
token: ${{ secrets.CODECOV_TOKEN }}
56+
fail_ci_if_error: true

.github/workflows/Documentation.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
- uses: julia-actions/julia-processcoverage@v1
2727
with:
2828
directories: src
29-
- uses: codecov/codecov-action@v3
29+
- uses: codecov/codecov-action@v4
3030
with:
3131
files: lcov.info
32+
token: ${{ secrets.CODECOV_TOKEN }}
33+
fail_ci_if_error: true

.github/workflows/Downstream.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ jobs:
5555
RETESTITEMS_NWORKERS: 4
5656
RETESTITEMS_NWORKER_THREADS: 2
5757
- uses: julia-actions/julia-processcoverage@v1
58-
- uses: codecov/codecov-action@v3
58+
- uses: codecov/codecov-action@v4
5959
with:
6060
file: lcov.info
61+
token: ${{ secrets.CODECOV_TOKEN }}
62+
fail_ci_if_error: true

0 commit comments

Comments
 (0)