From d3e0e6b3a28c12638e46a908a117ea931b623d28 Mon Sep 17 00:00:00 2001 From: Jonatan Heyman Date: Mon, 3 Mar 2025 13:16:16 +0100 Subject: [PATCH] Upgrade Github action: upload-artifact to v4 (v3 is deprecated) --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1c7fb40..b149d78 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -64,7 +64,7 @@ jobs: - name: Upload Linux artifact if: ${{ matrix.os == 'ubuntu-latest' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: heynote-linux-${{ github.sha }} path: release/*/Heynote_*.AppImage @@ -72,7 +72,7 @@ jobs: - name: Upload Mac artifact if: ${{ matrix.os == 'macos-latest' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: heynote-mac-arm64-${{ github.sha }} path: release/*/Heynote_*_arm64.dmg @@ -80,7 +80,7 @@ jobs: - name: Upload Windows artifact if: ${{ matrix.os == 'windows-latest' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: heynote-windows-${{ github.sha }} path: release/*/Heynote_*.exe