From 1a1b1f0c046398866afa9964ea2899926da6dc2a Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 14 Nov 2024 16:07:42 +0100 Subject: [PATCH] ci: use codecov-action v4 --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d44a53..27fae95 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,8 +96,9 @@ jobs: - name: 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@v4 with: token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos files: lcov.info - fail_ci_if_error: true \ No newline at end of file + fail_ci_if_error: true + verbose: true \ No newline at end of file