Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,14 @@ jobs:

- name: Download specific Build Artifact to artifacts/
if: ${{ inputs.artifact-name != '' && inputs.artifact-name != '*' }}
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.artifact-name }}
path: artifacts

- name: Download all Build Artifacts to artifacts/
if: ${{ inputs.artifact-name == '*' }}
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
path: artifacts
# see https://github.com/actions/toolkit/pull/1874
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Download bins
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: binaries-amd64-${{ matrix.features }}
path: artifacts/binaries-amd64/
- name: Download tests
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: testbinaries-amd64-${{ matrix.features }}
path: testbinaries/
Expand Down