From f2483dc722e8cab618dcf9451f756ba861101de9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 17:13:53 +0000 Subject: [PATCH] chore(deps): update codecov/codecov-action action to v4 --- .github/workflows/ci.yaml | 1 + .github/workflows/test.yaml | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 579183c881..2247a6708e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,6 +24,7 @@ jobs: uses: ./.github/workflows/test.yaml secrets: CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }} + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} build: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ef7bdab0ba..76ed9f6f2f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -5,6 +5,8 @@ on: secrets: CACHIX_AUTH_TOKEN: required: false + CODECOV_TOKEN: + required: false pull_request: branches: - main @@ -63,9 +65,10 @@ jobs: - name: Run coverage (IO tests and Spec tests against PostgreSQL 15) run: postgrest-coverage - name: Upload coverage to codecov - uses: codecov/codecov-action@v3.1.5 + uses: codecov/codecov-action@0cfda1dd0a4ad9efc75517f399d859cd1ea4ced1 # v4.0.2 with: files: ./coverage/codecov.json + token: ${{ secrets.CODECOV_TOKEN }} - name: Run doctests if: always()