From 70caa0be24ba4b3d3984f239e2cc3bca1bdccd0e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 19:09:20 +0000 Subject: [PATCH 1/2] deps: update codecov/codecov-action action to v4 --- .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 542b728c..596c1a16 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: - run: make test - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 acceptance: strategy: @@ -50,7 +50,7 @@ jobs: - run: make testacc - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 example: runs-on: ubuntu-latest From c0e35910219bcdd9fda6c8845b1d67d321b7290f Mon Sep 17 00:00:00 2001 From: jo Date: Thu, 1 Feb 2024 15:36:16 +0100 Subject: [PATCH 2/2] ci: add codecov token --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 596c1a16..cf418423 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,6 +29,8 @@ jobs: - run: make test - uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} acceptance: strategy: @@ -51,6 +53,8 @@ jobs: - run: make testacc - uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} example: runs-on: ubuntu-latest