From 1acc08d2fb68ad71ce79d6e22e3de73329eb24e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francis=20Clairicia-Rose-Claire-Jos=C3=A9phine?= Date: Mon, 14 Aug 2023 17:11:17 +0200 Subject: [PATCH] `codecov-action` now uses the repo's CODECOV_TOKEN (#121) --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 025c310a..4719bf1f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -66,6 +66,7 @@ jobs: if: hashFiles('coverage.xml') != '' # Rudimentary `file.exists()` uses: codecov/codecov-action@v3 with: + token: ${{ secrets.CODECOV_TOKEN }} flags: >- # Mark which lines are covered by which envs test-unit, Py-${{ matrix.python_version }} @@ -98,6 +99,7 @@ jobs: if: hashFiles('coverage.xml') != '' # Rudimentary `file.exists()` uses: codecov/codecov-action@v3 with: + token: ${{ secrets.CODECOV_TOKEN }} flags: >- # Mark which lines are covered by which envs test-functional, OS-${{ runner.os }},