diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fd1be0b441..2372ca25263 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -423,7 +423,6 @@ jobs: # The `cargo-taurpalin` coverage reporting tool seems to have better code instrumentation and thus # produces better results for Rust codebases in general. However, unlike `grcov` it requires # running docker with `--security-opt seccomp=unconfined` which is why we use `grcov` instead. - CODECOV_P_TOKEN: ${{ secrets.CODECOV_P_TOKEN }} CODECOV_L_TOKEN: ${{ secrets.CODECOV_L_TOKEN }} run: | # RUSTFLAGS are the cause target cache can't be used here @@ -443,7 +442,7 @@ jobs: grcov . --binary-path ./target/debug/ --source-dir . --output-type lcov --llvm --branch \ --ignore-not-existing --ignore "/*" --ignore "tests/*" --output-path lcov-w-branch.info rust-covfix lcov-w-branch.info --output lcov-w-branch-fixed.info - codecov --token "$CODECOV_P_TOKEN" --file lcov-w-branch-fixed.info --nonZero + codecov --token "$CODECOV_L_TOKEN" --file lcov-w-branch-fixed.info --nonZero # lines coverage grcov . --binary-path ./target/debug/ --source-dir . --output-type lcov --llvm \ --ignore-not-existing --ignore "/*" --ignore "tests/*" --output-path lcov-lines.info