Skip to content

Commit

Permalink
GitHub actions: upgrade download/upload artifacts
Browse files Browse the repository at this point in the history
Closes: AGWA#313
  • Loading branch information
AGWA committed Sep 3, 2024
1 parent 08dbdcf commit 968c924
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Build binary
run: make
- name: Upload release artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: git-crypt-artifacts
path: git-crypt
Expand All @@ -28,7 +28,7 @@ jobs:
contents: write
steps:
- name: Download release artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: git-crypt-artifacts
- name: Upload release asset
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
shell: msys2 {0}
run: make LDFLAGS="-static-libstdc++ -static -lcrypto -lws2_32"
- name: Upload release artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: git-crypt-artifacts
path: git-crypt.exe
Expand All @@ -38,7 +38,7 @@ jobs:
contents: write
steps:
- name: Download release artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: git-crypt-artifacts
- name: Upload release asset
Expand Down

0 comments on commit 968c924

Please sign in to comment.