Skip to content

Commit 875496a

Browse files
Merge pull request #612 from SciML/dependabot/github_actions/codecov/codecov-action-4
Bump codecov/codecov-action from 3 to 4
2 parents 8a63727 + 1b1d190 commit 875496a

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
@@ -43,6 +43,8 @@ jobs:
4343
GROUP: ${{ matrix.group }}
4444
JULIA_NUM_THREADS: 11
4545
- uses: julia-actions/julia-processcoverage@v1
46-
- uses: codecov/codecov-action@v3
46+
- uses: codecov/codecov-action@v4
4747
with:
4848
file: lcov.info
49+
token: ${{ secrets.CODECOV_TOKEN }}
50+
fail_ci_if_error: true

.github/workflows/Documentation.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
2424
run: julia --project=docs/ --code-coverage=user docs/make.jl
2525
- uses: julia-actions/julia-processcoverage@v1
26-
- uses: codecov/codecov-action@v3
26+
- uses: codecov/codecov-action@v4
2727
with:
2828
file: lcov.info
29+
token: ${{ secrets.CODECOV_TOKEN }}
30+
fail_ci_if_error: true

.github/workflows/Downstream.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ jobs:
7979
exit(0) # Exit immediately, as a success
8080
end
8181
- uses: julia-actions/julia-processcoverage@v1
82-
- uses: codecov/codecov-action@v3
82+
- uses: codecov/codecov-action@v4
8383
with:
8484
file: lcov.info
85+
token: ${{ secrets.CODECOV_TOKEN }}
86+
fail_ci_if_error: true

0 commit comments

Comments
 (0)