From e8a92286a7badfd2dca740e10ab8755ab0d5d575 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 18:56:09 +0000 Subject: [PATCH 1/3] deps: update codecov/codecov-action action to v4 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 61c31f4..2e5d84e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,4 +29,4 @@ jobs: run: tox -- --cov --cov-report=xml - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 From b8706730877f21e184cd028674d8a99aa9042047 Mon Sep 17 00:00:00 2001 From: jo Date: Thu, 1 Feb 2024 15:35:22 +0100 Subject: [PATCH 2/3] ci: add codecov token --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2e5d84e..ba56fe7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,3 +30,5 @@ jobs: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From 0450d46b77e25a5d9c55facf01b4d4fed4f1f52c Mon Sep 17 00:00:00 2001 From: jo Date: Thu, 1 Feb 2024 15:47:13 +0100 Subject: [PATCH 3/3] ci: prefer using with --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba56fe7..f850344 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,5 +30,5 @@ jobs: - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + with: + token: ${{ secrets.CODECOV_TOKEN }}