From 0d0b97a43fcce5b1cdb5efb0d04afcaa5b98901d Mon Sep 17 00:00:00 2001 From: Piotr Idzik <65706193+vil02@users.noreply.github.com> Date: Sat, 20 Apr 2024 08:51:49 +0200 Subject: [PATCH] chore: update `codecov-action` to `v4` (#704) --- .github/workflows/upload_coverage_report.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/upload_coverage_report.yml b/.github/workflows/upload_coverage_report.yml index 2308cc871..b982b25f3 100644 --- a/.github/workflows/upload_coverage_report.yml +++ b/.github/workflows/upload_coverage_report.yml @@ -23,9 +23,17 @@ jobs: - name: Generate code coverage run: | go test -coverprofile="${{ env.REPORT_NAME }}" ./... - - name: Upload coverage to codecov - uses: codecov/codecov-action@v3 + - name: Upload coverage to codecov (tokenless) + if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository + uses: codecov/codecov-action@v4 with: files: "${{ env.REPORT_NAME }}" fail_ci_if_error: true + - name: Upload coverage to codecov (with token) + if: "! github.event.pull_request.head.repo.fork " + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: "${{ env.REPORT_NAME }}" + fail_ci_if_error: true ...