From 8f4de554daa872707bff87dc129e2352d913eff1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 09:24:43 +0000 Subject: [PATCH 1/3] Bump codecov/codecov-action from 3 to 4 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c8ba6180..ed5d7989 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,7 +42,7 @@ jobs: # auto activation of env does not seem to work on win run: >- pip install -e . && pytest - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 if: matrix.os == 'ubuntu-latest' with: files: ./coverage.xml, From cd17677f7cc13480749b0f23272129c1451098eb Mon Sep 17 00:00:00 2001 From: k-dominik Date: Mon, 13 May 2024 11:41:04 +0200 Subject: [PATCH 2/3] add secret to env --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ed5d7989..4096b853 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,6 +48,8 @@ jobs: files: ./coverage.xml, fail_ci_if_error: true # optional (default = false) verbose: true # optional (default = false) + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} test-w-conda-recipe: strategy: From add168fcf2217489b122985041376ee85905507a Mon Sep 17 00:00:00 2001 From: k-dominik Date: Mon, 13 May 2024 11:52:36 +0200 Subject: [PATCH 3/3] fix trailing comma --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4096b853..2c238a2a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: - uses: codecov/codecov-action@v4 if: matrix.os == 'ubuntu-latest' with: - files: ./coverage.xml, + files: ./coverage.xml fail_ci_if_error: true # optional (default = false) verbose: true # optional (default = false) env: