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