Skip to content

Commit

Permalink
ci: bump actions/upload-artifact and actions/download-artifact to v4 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alecjacobs5401 authored Jan 16, 2024
1 parent ec58920 commit 5aec637
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:

- name: Make distributables
run: make -f Makefile.release dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
name: dist-${{ matrix.go }}
path: "dist/*"
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- name: Make distributables
run: make -f Makefile.release dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: "dist/*"
Expand All @@ -36,7 +36,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: "dist"
Expand All @@ -57,7 +57,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: "dist/*"
Expand Down

0 comments on commit 5aec637

Please sign in to comment.