From c54e0d335387cf2d4531df54504a2a698ee9dcee Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sun, 18 Feb 2024 21:54:01 +0100 Subject: [PATCH] ci: Use actions/download-artifact instead of dawidd6/action-download-artifact The "default" action now supports downloading from different workflow runs, too, so we might as well use it. --- .github/workflows/report.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/report.yaml b/.github/workflows/report.yaml index 7233b7c63..aaade2c1a 100644 --- a/.github/workflows/report.yaml +++ b/.github/workflows/report.yaml @@ -15,10 +15,9 @@ jobs: if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure' }} steps: - name: Download from Artifacts - uses: dawidd6/action-download-artifact@v3 + uses: actions/download-artifact@v4 with: - workflow: ${{ github.event.workflow.name }} - run_id: ${{github.event.workflow_run.id }} + run-id: ${{github.event.workflow_run.id }} name: loadtest.md path: artifacts - name: Upload to GitHub Checks