From b264184cea3bfdb318fb007ed0972814a41014eb Mon Sep 17 00:00:00 2001 From: Tim Schwenke Date: Mon, 22 Aug 2022 20:19:55 +0200 Subject: [PATCH] ci: Add explicit codecov token Why? If no explicit token given, the default token of the Codecov action will be used. With that we often run into API limits. --- .github/workflows/tests-and-checks.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests-and-checks.yaml b/.github/workflows/tests-and-checks.yaml index c35d9d7..6dad2ad 100644 --- a/.github/workflows/tests-and-checks.yaml +++ b/.github/workflows/tests-and-checks.yaml @@ -61,6 +61,7 @@ jobs: if: strategy.job-index == 0 uses: codecov/codecov-action@v3 with: + token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true # ------------------------------------------------------------------------