diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1705a58..51c945a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Rust Stable run: | @@ -27,7 +27,8 @@ jobs: - name: Test and Generate code coverage run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v5 with: files: lcov.info fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }}