Skip to content

Commit

Permalink
build(deps): bump actions/{download,upload}-artifact to v4 (#1193)
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Lanford <[email protected]>
  • Loading branch information
joelanford authored Jan 10, 2024
1 parent e8dbf24 commit 6fd8cec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4

- run: |
for dist in dist-*; do
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
RELEASE_ARGS: release --rm-dist -f release/goreleaser.windows.yaml --skip-validate ${{ github.event_name == 'pull_request' && '--snapshot' || '' }}

- run: tar -cvf dist-windows.tar dist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: dist-windows
path: dist-windows.tar
Expand All @@ -87,7 +87,7 @@ jobs:
RELEASE_ARGS: release --rm-dist -f release/goreleaser.darwin.yaml --skip-validate ${{ github.event_name == 'pull_request' && '--snapshot' || '' }}

- run: gtar -cvf dist-darwin.tar dist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: dist-darwin
path: dist-darwin.tar
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
RELEASE_ARGS: release --rm-dist -f release/goreleaser.linux.yaml --skip-validate ${{ github.event_name == 'pull_request' && '--snapshot' || '' }}

- run: tar -cvf dist-linux.tar dist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: dist-linux
path: dist-linux.tar

0 comments on commit 6fd8cec

Please sign in to comment.