Skip to content

Commit adf5f29

Browse files
Merge pull request #97 from SciML/dependabot/github_actions/codecov/codecov-action-4
Bump codecov/codecov-action from 3 to 4
2 parents f1724fb + 7c19759 commit adf5f29

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
paths-ignore:
1212
- 'docs/**'
1313
schedule:
14-
- cron: '57 0 * * 5'
14+
- cron: '57 0 * * 5'
1515
jobs:
1616
test:
1717
runs-on: ${{ matrix.os }}
@@ -39,6 +39,8 @@ jobs:
3939
with:
4040
depwarn: error
4141
- uses: julia-actions/julia-processcoverage@v1
42-
- uses: codecov/codecov-action@v3
42+
- uses: codecov/codecov-action@v4
4343
with:
44-
file: lcov.info
44+
file: lcov.info
45+
token: ${{ secrets.CODECOV_TOKEN }}
46+
fail_ci_if_error: "true"

.github/workflows/Documentation.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key
2727
run: julia --project=docs/ --code-coverage=user docs/make.jl
2828
- uses: julia-actions/julia-processcoverage@v1
29-
- uses: codecov/codecov-action@v3
29+
- uses: codecov/codecov-action@v4
3030
with:
31-
file: lcov.info
31+
file: lcov.info
32+
token: ${{ secrets.CODECOV_TOKEN }}
33+
fail_ci_if_error: "true"

0 commit comments

Comments
 (0)