From 7d4935d209d337901b8e2692ca6494343ba9fe8d Mon Sep 17 00:00:00 2001 From: Devin Jean Date: Thu, 15 Aug 2024 10:21:35 -0500 Subject: [PATCH] update codecov action --- .github/workflows/codecov.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml index df28d37..a2056ee 100644 --- a/.github/workflows/codecov.yaml +++ b/.github/workflows/codecov.yaml @@ -13,7 +13,8 @@ jobs: - run: rustup update stable - uses: taiki-e/install-action@cargo-llvm-cov - run: cargo llvm-cov --ignore-filename-regex 'main.rs|cli.rs|test/' --lcov --output-path lcov.info - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: + token: ${{ secrets.CODECOV_TOKEN }} files: lcov.info fail_ci_if_error: true