Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: update artifact actions to v4 #1255

Merged
merged 4 commits into from
Dec 18, 2024
Merged
Changes from 1 commit
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
13 changes: 7 additions & 6 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,18 +198,18 @@ jobs:
-
name: Upload builder metadata
if: fromJson(needs.prepare.outputs.push)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: metadata-builder-${{ matrix.variant }}
name: metadata-builder-${{ github.run_id }}-${{ matrix.variant }}-${{ matrix.platform }}
vinceAmstoutz marked this conversation as resolved.
Show resolved Hide resolved
path: /tmp/metadata/builder/*
if-no-files-found: error
retention-days: 1
-
name: Upload runner metadata
if: fromJson(needs.prepare.outputs.push)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: metadata-runner-${{ matrix.variant }}
name: metadata-runner-${{ github.run_id }}-${{ matrix.variant }}-${{ matrix.platform }}
vinceAmstoutz marked this conversation as resolved.
Show resolved Hide resolved
path: /tmp/metadata/runner/*
if-no-files-found: error
retention-days: 1
Expand Down Expand Up @@ -237,10 +237,11 @@ jobs:
steps:
-
name: Download metadata
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: metadata-${{ matrix.target }}-${{ matrix.variant }}
pattern: metadata-${{ matrix.target }}-${{ github.run_id }}-${{ matrix.variant }}-*
vinceAmstoutz marked this conversation as resolved.
Show resolved Hide resolved
path: /tmp/metadata
merge-multiple: true
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
Loading