From 2fff91b06422ba70b86cdf61d4417d70626fc48a Mon Sep 17 00:00:00 2001 From: Sourabh Mehta Date: Thu, 11 Jan 2024 15:10:29 +0100 Subject: [PATCH] Adapt new download-artifact action --- .github/workflows/release.yml | 8 ++++---- .github/workflows/tpip-check.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 855d074..0f8797e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,17 +19,17 @@ jobs: needs: test runs-on: ubuntu-latest steps: - - name: Download coverage report - uses: actions/download-artifact@v3 + - name: Download test results + uses: actions/download-artifact@v4 with: - name: test-results + pattern: test-results-* path: testreport/ - name: Zip test reports run: | zip -r testreport.zip testreport - - name: Attach coverage report to release assets + - name: Attach test reports to release assets if: startsWith(github.ref, 'refs/tags/') uses: svenstaro/upload-release-action@v2 with: diff --git a/.github/workflows/tpip-check.yml b/.github/workflows/tpip-check.yml index ed1b9d7..ac1fe61 100644 --- a/.github/workflows/tpip-check.yml +++ b/.github/workflows/tpip-check.yml @@ -66,7 +66,7 @@ jobs: ref: ${{ github.event.pull_request.head.ref }} - name: Restore Changes - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: tpip-report