From e74cdad0311dfe403a06c590abae4c58ab3f5407 Mon Sep 17 00:00:00 2001 From: Flavio Castelli Date: Tue, 5 Nov 2024 15:19:20 +0100 Subject: [PATCH] automation: fix codecov GHA Ensure the codecov token is provided to the action using in the proper way Signed-off-by: Flavio Castelli --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb46d49d..39a380b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,13 +92,12 @@ jobs: - name: Upload unit-tests coverage to Codecov uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }} with: files: lcov.info fail_ci_if_error: true name: unit-tests and e2e-tests verbose: true + token: ${{ secrets.CODECOV_ORG_TOKEN }} fmt: name: Rustfmt