Skip to content

Commit 70d74e4

Browse files
committed
Fix CI
1 parent 51ef451 commit 70d74e4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/main.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: Install Rust Stable
1919
run: |
@@ -27,7 +27,8 @@ jobs:
2727
- name: Test and Generate code coverage
2828
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
2929
- name: Upload coverage to Codecov
30-
uses: codecov/codecov-action@v3
30+
uses: codecov/codecov-action@v5
3131
with:
3232
files: lcov.info
3333
fail_ci_if_error: true
34+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)