From d35727305501f905424f19a0e95b61dcda61c460 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 17:48:08 +0100 Subject: [PATCH] Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows (#415) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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](https://github.com/actions/download-artifact/compare/v3...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] * update actions/upload-artifact to v4.1.7 * fix version to v4 * unique naming for pytest artifacts --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michaela Müller <51025211+mumichae@users.noreply.github.com> Co-authored-by: Michaela Mueller --- .github/workflows/test.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b7e5bf5e..361f60d1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: @@ -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 @@ -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 @@ -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