Skip to content

Commit

Permalink
Merge pull request #193 from crazy-max/bump-artifact-v4
Browse files Browse the repository at this point in the history
bump actions/upload-artifact and actions/download-artifact to 4
  • Loading branch information
crazy-max authored Feb 6, 2024
2 parents 0085b64 + d38942b commit 54ebfa2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ jobs:
make -C pkg/${{ inputs.name }} run-verify-${{ matrix.pkg }}
-
name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.name }}
name: build-pkg-${{ inputs.name }}-${{ matrix.pkg }}
path: ./pkg/${{ inputs.name }}/bin/*
if-no-files-found: error
retention-days: 1
Expand All @@ -136,10 +136,11 @@ jobs:
version: latest
-
name: Download binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.name }}
path: ./pkg/${{ inputs.name }}/bin
pattern: build-pkg-*
merge-multiple: true
-
name: Generate metadata
run: |
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ jobs:
make -C pkg/${{ inputs.name }} run-verify-${{ matrix.pkg }}
-
name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.name }}
name: release-pkg-${{ inputs.name }}-${{ matrix.pkg }}
path: ./pkg/${{ inputs.name }}/bin/*
if-no-files-found: ignore
retention-days: 1
Expand All @@ -124,10 +124,11 @@ jobs:
done
-
name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.name }}
path: ./pkg/${{ inputs.name }}/bin
pattern: release-pkg-*
merge-multiple: true
-
name: Resolve metadata
run: |
Expand Down

0 comments on commit 54ebfa2

Please sign in to comment.