From 0d9fbd1fae912555240ef30d13ea5b51b9fa7464 Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Sat, 11 Oct 2025 00:04:09 +0200 Subject: [PATCH] upgrade codecov-action to v4 --- .github/workflows/codecov.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index a93ab6c..ce5a21c 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -47,9 +47,9 @@ jobs: mkdir /tmp/cov; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov; - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} - directory: /tmp/cov/ + files: /tmp/cov/tests.lcov name: waku-bindings-codecov fail_ci_if_error: true