diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-03-19 14:13:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-19 13:13:57 +0000 |
commit | 604f15139d23314de77fff0a98aa88c1b89b5abe (patch) | |
tree | 3d46e7c85a427fe24e062b744513852a38a5de81 | |
parent | 697837053d22d895fc24f5fe4c8bde0860184687 (diff) | |
download | FlightCore-604f15139d23314de77fff0a98aa88c1b89b5abe.tar.gz FlightCore-604f15139d23314de77fff0a98aa88c1b89b5abe.zip |
build: Update outdated checkout action (#220)
-rw-r--r-- | .github/workflows/push-test.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index f8217a45..cb7491e9 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -103,13 +103,13 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - name: Upload Linux artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: linux-artifacts path: | src-tauri/target/release/bundle/appimage/* - name: Upload Windows artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: windows-artifacts path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 349e56e0..23c504aa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,7 +55,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} - name: upload build artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: path: | src-tauri/target/release/bundle/appimage/*AppImage* |