From 968c924798deb4295299897ff3a5fc5cfd31e716 Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Tue, 3 Sep 2024 19:30:58 -0400 Subject: [PATCH] GitHub actions: upgrade download/upload artifacts Closes: #313 --- .github/workflows/release-linux.yml | 4 ++-- .github/workflows/release-windows.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-linux.yml b/.github/workflows/release-linux.yml index 94a0898..ea98525 100644 --- a/.github/workflows/release-linux.yml +++ b/.github/workflows/release-linux.yml @@ -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 @@ -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 diff --git a/.github/workflows/release-windows.yml b/.github/workflows/release-windows.yml index 6794e4a..e82e992 100644 --- a/.github/workflows/release-windows.yml +++ b/.github/workflows/release-windows.yml @@ -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 @@ -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