upgrade codecov-action to v4

This commit is contained in:
Ivan Folgueira Bande 2025-10-11 00:04:09 +02:00
parent 19484cf19e
commit 0d9fbd1fae
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7

View File

@ -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