From 2bd5eb3b2468a0673b8d9c474d3316ee2e06acb3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 04:19:31 +0000 Subject: [PATCH 1/2] Bump codecov/codecov-action from 5.1.1 to 5.1.2 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5.1.1 to 5.1.2. - [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/v5.1.1...v5.1.2) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/pytests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytests.yml b/.github/workflows/pytests.yml index 177227ea..3cadb181 100644 --- a/.github/workflows/pytests.yml +++ b/.github/workflows/pytests.yml @@ -132,7 +132,7 @@ jobs: continue-on-error: true - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5.1.1 + uses: codecov/codecov-action@v5.1.2 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./cov.xml @@ -261,7 +261,7 @@ jobs: continue-on-error: true - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5.1.1 + uses: codecov/codecov-action@v5.1.2 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./cov.xml From c8beb94c186b2af67f7f3da07ec104355b8a1ff9 Mon Sep 17 00:00:00 2001 From: Guillaume Maze Date: Tue, 21 Jan 2025 10:03:58 +0100 Subject: [PATCH 2/2] Fix coverage upload --- .github/workflows/pytests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytests.yml b/.github/workflows/pytests.yml index 3cadb181..215e936a 100644 --- a/.github/workflows/pytests.yml +++ b/.github/workflows/pytests.yml @@ -135,7 +135,7 @@ jobs: uses: codecov/codecov-action@v5.1.2 with: token: ${{ secrets.CODECOV_TOKEN }} - file: ./cov.xml + files: ./cov.xml flags: unittests, core, pinned, py${{matrix.python-version}} name: codecov-github fail_ci_if_error: false @@ -264,7 +264,7 @@ jobs: uses: codecov/codecov-action@v5.1.2 with: token: ${{ secrets.CODECOV_TOKEN }} - file: ./cov.xml + files: ./cov.xml flags: unittests, all, pinned, py${{matrix.python-version}} name: codecov-github fail_ci_if_error: false