diff --git a/.github/workflows/build-gui.yml b/.github/workflows/build-gui.yml index 9d936080a8..7723254d51 100644 --- a/.github/workflows/build-gui.yml +++ b/.github/workflows/build-gui.yml @@ -103,7 +103,7 @@ jobs: - if: startsWith(matrix.os, 'windows') name: Upload a Build Artifact (Windows) - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: # Artifact name name: ${{ format('SlimeVR-GUI-Windows-{0}', env.BUILD_ARCH) }} @@ -112,7 +112,7 @@ jobs: - if: startsWith(matrix.os, 'ubuntu') name: Upload a Build Artifact (Linux) - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: # Artifact name name: ${{ format('SlimeVR-GUI-Linux-{0}', env.BUILD_ARCH) }} @@ -121,7 +121,7 @@ jobs: - if: matrix.os == 'macos-latest' name: Upload a Build Artifact (macOS) - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: # Artifact name name: SlimeVR-GUI-macOS diff --git a/.github/workflows/generate-update-manifest.yml b/.github/workflows/generate-update-manifest.yml index 0da5d9f3bd..5e7c332345 100644 --- a/.github/workflows/generate-update-manifest.yml +++ b/.github/workflows/generate-update-manifest.yml @@ -20,7 +20,7 @@ jobs: run: | npx @slimevr/update-manifest-generator@latest - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: "update-manifest.json" path: ./update-manifest.json diff --git a/.github/workflows/gradle.yaml b/.github/workflows/gradle.yaml index 7b78a25aa7..abede40901 100644 --- a/.github/workflows/gradle.yaml +++ b/.github/workflows/gradle.yaml @@ -68,7 +68,7 @@ jobs: run: ./gradlew :server:desktop:shadowJar - name: Upload the Server JAR as a Build Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: # Artifact name name: 'SlimeVR-Server' # optional, default is artifact @@ -127,7 +127,7 @@ jobs: ANDROID_KEY_PASSWD: ${{ secrets.ANDROID_KEY_PASSWD }} - name: Upload the Android build artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: # Artifact name name: 'SlimeVR-Android' # optional, default is artifact @@ -158,7 +158,7 @@ jobs: ANDROID_KEY_PASSWD: ${{ secrets.ANDROID_GPLAY_KEY_PASSWD }} - name: Upload the Google Play artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: startsWith(github.ref, 'refs/tags/') with: # Artifact name @@ -230,23 +230,23 @@ jobs: run: | tar czf slimevr-gui-dist.tar.gz -C gui/dist/ . - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: matrix.os == 'ubuntu-latest' with: name: SlimeVR-GUI-Dist path: ./slimevr-gui-dist.tar.gz - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: ${{ format('SlimeVR-GUI-Deb-{0}', env.BUILD_ARCH) }} path: target/release/bundle/deb/slimevr*.deb - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: ${{ format('SlimeVR-GUI-AppImage-{0}', env.BUILD_ARCH) }} path: target/release/bundle/appimage/slimevr*.AppImage - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: ${{ format('SlimeVR-GUI-RPM-{0}', env.BUILD_ARCH) }} path: target/release/bundle/rpm/slimevr*.rpm @@ -320,12 +320,12 @@ jobs: --volicon ../macos/SlimeVR.app/Contents/Resources/icon.icns --skip-jenkins \ --eula ../../../../../LICENSE-MIT slimevr.dmg ../macos/SlimeVR.app - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: SlimeVR-GUI-MacApp path: target/universal-apple-darwin/release/bundle/macos/SlimeVR*.app - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: SlimeVR-GUI-MacDmg path: target/universal-apple-darwin/release/bundle/dmg/slimevr.dmg @@ -399,7 +399,7 @@ jobs: cp target/release/slimevr.exe ./SlimeVR/ 7z a -tzip "SlimeVR-$BUILD_ARCH.zip" ./SlimeVR/ - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: ${{ format('SlimeVR-GUI-Windows-{0}', env.BUILD_ARCH) }} path: ./SlimeVR*.zip