Skip to content

Commit

Permalink
ci: update artifact actions to v4
Browse files Browse the repository at this point in the history
Upgraded the artifact actions to version 4 and enabled the `merge-multiple` option to ensure better compatibility with our system.
  • Loading branch information
vinceAmstoutz committed Dec 18, 2024
1 parent c0e0c2d commit 7d15ef8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ 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 }}
path: /tmp/metadata/builder/*
Expand All @@ -207,7 +207,7 @@ jobs:
-
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 }}
path: /tmp/metadata/runner/*
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 }}
path: /tmp/metadata
merge-multiple: true
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit 7d15ef8

Please sign in to comment.