From 815377eb568a26e4fd74e0612335c9bbeaa4f25c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 14:53:59 +0000 Subject: [PATCH 1/2] CI: (deps): Bump codecov/codecov-action in /.github/workflows Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/tests-conda.yml | 2 +- .github/workflows/tests-pypi.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests-conda.yml b/.github/workflows/tests-conda.yml index 794bf857d5..40de84b463 100644 --- a/.github/workflows/tests-conda.yml +++ b/.github/workflows/tests-conda.yml @@ -71,7 +71,7 @@ jobs: uses: actions/download-artifact@v4 - name: Upload coverage - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: name: ${{ github.workflow }} fail_ci_if_error: true diff --git a/.github/workflows/tests-pypi.yml b/.github/workflows/tests-pypi.yml index 3c0cd9ce2c..20d5b5086a 100644 --- a/.github/workflows/tests-pypi.yml +++ b/.github/workflows/tests-pypi.yml @@ -99,7 +99,7 @@ jobs: uses: actions/download-artifact@v4 - name: Upload coverage - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: name: ${{ github.workflow }} fail_ci_if_error: true From 1f2299e73628989e126528b270671b285a3417bb Mon Sep 17 00:00:00 2001 From: Ryan May Date: Mon, 18 Nov 2024 12:22:04 -0700 Subject: [PATCH 2/2] CI: Fix names in CodeCov upload Apparently it no longer likes spaces, so just put something useful directly in the slot. --- .github/workflows/tests-conda.yml | 2 +- .github/workflows/tests-pypi.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests-conda.yml b/.github/workflows/tests-conda.yml index 40de84b463..329464321f 100644 --- a/.github/workflows/tests-conda.yml +++ b/.github/workflows/tests-conda.yml @@ -73,6 +73,6 @@ jobs: - name: Upload coverage uses: codecov/codecov-action@v5 with: - name: ${{ github.workflow }} + name: Conda fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/tests-pypi.yml b/.github/workflows/tests-pypi.yml index 20d5b5086a..c86a377d36 100644 --- a/.github/workflows/tests-pypi.yml +++ b/.github/workflows/tests-pypi.yml @@ -101,6 +101,6 @@ jobs: - name: Upload coverage uses: codecov/codecov-action@v5 with: - name: ${{ github.workflow }} + name: PyPI fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file