Skip to content

Commit d37204b

Browse files
Merge pull request #161 from SciML/dependabot/github_actions/codecov/codecov-action-4
Bump codecov/codecov-action from 3 to 4
2 parents 749be22 + 295724f commit d37204b

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
@@ -36,6 +36,8 @@ jobs:
3636
with:
3737
depwarn: error
3838
- uses: julia-actions/julia-processcoverage@v1
39-
- uses: codecov/codecov-action@v3
39+
- uses: codecov/codecov-action@v4
4040
with:
4141
file: lcov.info
42+
token: ${{ secrets.CODECOV_TOKEN }}
43+
fail_ci_if_error: true

.github/workflows/Documentation.yml

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

.github/workflows/Downstream.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ jobs:
6464
exit(0) # Exit immediately, as a success
6565
end
6666
- uses: julia-actions/julia-processcoverage@v1
67-
- uses: codecov/codecov-action@v3
67+
- uses: codecov/codecov-action@v4
6868
with:
6969
file: lcov.info
70+
token: ${{ secrets.CODECOV_TOKEN }}
71+
fail_ci_if_error: true

0 commit comments

Comments
 (0)