From aadfaffd30ffd5ee5ccffbc3c6e6953cbdb9ff41 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 2 Feb 2024 01:02:45 +0000 Subject: [PATCH 1/2] Update codecov/codecov-action action to v4 --- .github/workflows/ci-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index bafa3f10..02d696cc 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -30,7 +30,7 @@ jobs: run: yarn test - name: Upload unit test coverage if: success() - uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3 + uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4 - name: Run e2e tests run: yarn e2e From c77ee74774a6cbabb8a8b4cabe60a46f94d5e1c3 Mon Sep 17 00:00:00 2001 From: Louise Davies Date: Fri, 2 Feb 2024 15:30:10 +0000 Subject: [PATCH 2/2] Add token to codecov action --- .github/workflows/ci-build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 02d696cc..8830a864 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -31,6 +31,9 @@ jobs: - name: Upload unit test coverage if: success() uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} + fail_ci_if_error: true - name: Run e2e tests run: yarn e2e