Skip to content

Commit 8bbc848

Browse files
Merge pull request #84 from SciML/dependabot/github_actions/codecov/codecov-action-4
Bump codecov/codecov-action from 3 to 4
2 parents 5e166f5 + 78d1c5d commit 8bbc848

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,13 @@ jobs:
3838
${{ runner.os }}-test-
3939
${{ runner.os }}-
4040
- run: >
41-
sudo apt-get install --no-install-recommends python3-setuptools python3-wheel
42-
&& pip3 install sympy
41+
sudo apt-get install --no-install-recommends python3-setuptools python3-wheel && pip3 install sympy
42+
4343
- uses: julia-actions/julia-buildpkg@v1
4444
- uses: julia-actions/julia-runtest@v1
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
@@ -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

0 commit comments

Comments
 (0)