diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-01-24 22:33:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-24 22:33:45 +0100 |
commit | 348f30e23276b8a7722eb562a0a8995708e7c2dd (patch) | |
tree | 2d985fe3fbddae430cf4f8d72544f246e5c85370 /.github | |
parent | 4c920c6d985027fc026e72aa921bc7e0c2827b7c (diff) | |
download | FlightCore-348f30e23276b8a7722eb562a0a8995708e7c2dd.tar.gz FlightCore-348f30e23276b8a7722eb562a0a8995708e7c2dd.zip |
chore: Bump upload-artifact action to v4 (#768)
v3 uses Node 16 which is slated for deprecation by GitHub Actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/push-test.yml | 8 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 6fd267b1..9da3c9db 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -132,21 +132,21 @@ jobs: TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - name: Upload Linux artifact if: matrix.platform == 'ubuntu-22.04' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: linux-artifacts path: | src-tauri/target/release/bundle/appimage/* - name: Upload Linux AppImage if: matrix.platform == 'ubuntu-22.04' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: linux-appimage path: | src-tauri/target/release/bundle/appimage/*.AppImage - name: Upload Windows artifact if: matrix.platform == 'windows-latest' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: windows-artifacts path: | @@ -154,7 +154,7 @@ jobs: src-tauri/target/release/app.pdb - name: Additionally upload Windows installer separately if: matrix.platform == 'windows-latest' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: windows-msi path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 48539636..6a5096c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - name: upload build artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: | src-tauri/target/release/bundle/appimage/*AppImage* |