Skip to content

Commit

Permalink
Merge pull request #849 from tinkerbell/dependabot/github_actions/act…
Browse files Browse the repository at this point in the history
…ions/upload-artifact-4
  • Loading branch information
chrisdoherty4 authored Jan 13, 2024
2 parents 45748ae + 37dec94 commit b1b6857
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ jobs:
go-version: "${{ env.GO_VERSION }}"
- name: Build linux/${{ matrix.platform }}
run: make build -j$(nproc) GOOS=linux GOARCH=${{ matrix.platform }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: binaries
name: ${{ matrix.platform }}-binaries
path: bin/*
package:
name: Package
Expand Down Expand Up @@ -95,10 +95,11 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Download all binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: binaries
name: *-binaries
path: ./bin
merge-multiple: true
# Artifact upload doesn't preserve permissions so we need to fix them before use in
# the Dockerfiles.
- name: Fix permissions
Expand Down

0 comments on commit b1b6857

Please sign in to comment.