Skip to content

Commit

Permalink
Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows (#…
Browse files Browse the repository at this point in the history
…415)

* Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4.1.7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* update actions/upload-artifact to v4.1.7

* fix version to v4

* unique naming for pytest artifacts

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michaela Müller <[email protected]>
Co-authored-by: Michaela Mueller <[email protected]>
  • Loading branch information
3 people authored Dec 5, 2024
1 parent a26aa63 commit d357273
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ jobs:
mv coverage.xml "$(echo 'coverage_metrics_${{ matrix.os }}_${{ matrix.python }}.xml' | sed 's/[^a-z0-9\.\/]/_/g')"
- name: Upload coverage to GitHub Actions
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: metrics
name: pytest-metrics-${{ matrix.os }}-${{ matrix.python }}
path: coverage_*.xml

rpy2:
Expand Down Expand Up @@ -102,9 +102,9 @@ jobs:
mv coverage.xml "$(echo 'coverage_rpy2_${{ matrix.os }}_${{ matrix.python }}.xml' | sed 's/[^a-z0-9\.\/]/_/g')"
- name: Upload coverage to GitHub Actions
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rpy2
name: pytest-rpy2-${{ matrix.os }}-${{ matrix.python }}
path: coverage_*.xml


Expand Down Expand Up @@ -133,9 +133,9 @@ jobs:
mv coverage.xml "$(echo 'coverage_integration_${{ matrix.os }}_${{ matrix.python }}.xml' | sed 's/[^a-z0-9\.\/]/_/g')"
- name: Upload coverage to GitHub Actions
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: integration
name: pytest-integration-${{ matrix.os }}-${{ matrix.python }}
path: coverage_*.xml


Expand All @@ -149,7 +149,7 @@ jobs:
fetch-depth: 0

- name: Download coverage from GitHub Actions
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7

- name: Upload coverage
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit d357273

Please sign in to comment.