diff --git a/.github/workflows/submit-HEAD-coverage.yaml b/.github/workflows/submit-HEAD-coverage.yaml index 1a1fc7b8..88b1b22e 100644 --- a/.github/workflows/submit-HEAD-coverage.yaml +++ b/.github/workflows/submit-HEAD-coverage.yaml @@ -26,11 +26,15 @@ jobs: run: ls - name: Upload e2e_coverage report to Codecov with GitHub Action. uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: e2e_coverage.txt flags: e2e-testsuite - name: Upload upstream_coverage report to Codecov with GitHub Action. uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: upstream_coverage.xml flags: upstream-unit-tests diff --git a/.github/workflows/submit-PR-coverage.yaml b/.github/workflows/submit-PR-coverage.yaml index 5d18f3a8..4d51a1e4 100644 --- a/.github/workflows/submit-PR-coverage.yaml +++ b/.github/workflows/submit-PR-coverage.yaml @@ -21,11 +21,15 @@ jobs: run: ls - name: Upload e2e_coverage.txt report to Codecov with GitHub Action. uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: scripts/e2e_coverage.txt flags: e2e-testsuite - name: Upload upstream_coverage.xml report to Codecov with GitHub Action. uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: scripts/upstream_coverage.xml flags: upstream-unit-tests