Skip to content

Commit

Permalink
Update to workflow to use actions/upload-artifact@v4 / actions/downlo…
Browse files Browse the repository at this point in the history
…ad-artifact@v4

* Finally, actions/download-artifact@v4 supports inter-workflow downloading!
* See actions/download-artifact#3.
  • Loading branch information
pbatard committed Feb 12, 2024
1 parent c18cc2e commit 8365176
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: sha256sum *.efi

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: uefi-md5sum
name: ${{ matrix.TARGET_TYPE }}
path: ./*.efi
7 changes: 4 additions & 3 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,11 @@ jobs:
sudo apt-get -y --no-install-recommends install ${{ matrix.TARGET_PKGS }}
- name: Download artifacts
uses: dawidd6/action-download-artifact@v2
uses: actions/download-artifact@v4
with:
run_id: ${{ github.event.workflow_run.id }}
name: uefi-md5sum
run-id: ${{ github.event.workflow_run.id }}
name: ${{ matrix.TARGET_TYPE }}
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Download UEFI firmware
run: |
Expand Down

0 comments on commit 8365176

Please sign in to comment.