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.
This commit is contained in:
Wolfgang Walther
2024-02-22 20:12:18 +01:00
committed by Wolfgang Walther
parent 3a3601cbeb
commit c54e0d3353
+2 -3
View File
@@ -15,10 +15,9 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure' }} if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == 'failure' }}
steps: steps:
- name: Download from Artifacts - name: Download from Artifacts
uses: dawidd6/action-download-artifact@v3 uses: actions/download-artifact@v4
with: with:
workflow: ${{ github.event.workflow.name }} run-id: ${{github.event.workflow_run.id }}
run_id: ${{github.event.workflow_run.id }}
name: loadtest.md name: loadtest.md
path: artifacts path: artifacts
- name: Upload to GitHub Checks - name: Upload to GitHub Checks