Skip to content

Commit 3982249

Browse files
authored
Bump actions/upload-artifact from 5 to 6 (#1683)
2 parents 388bea2 + 55bcec4 commit 3982249

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/build-gui.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103

104104
- if: startsWith(matrix.os, 'windows')
105105
name: Upload a Build Artifact (Windows)
106-
uses: actions/upload-artifact@v5
106+
uses: actions/upload-artifact@v6
107107
with:
108108
# Artifact name
109109
name: ${{ format('SlimeVR-GUI-Windows-{0}', env.BUILD_ARCH) }}
@@ -112,7 +112,7 @@ jobs:
112112

113113
- if: startsWith(matrix.os, 'ubuntu')
114114
name: Upload a Build Artifact (Linux)
115-
uses: actions/upload-artifact@v5
115+
uses: actions/upload-artifact@v6
116116
with:
117117
# Artifact name
118118
name: ${{ format('SlimeVR-GUI-Linux-{0}', env.BUILD_ARCH) }}
@@ -121,7 +121,7 @@ jobs:
121121

122122
- if: matrix.os == 'macos-latest'
123123
name: Upload a Build Artifact (macOS)
124-
uses: actions/upload-artifact@v5
124+
uses: actions/upload-artifact@v6
125125
with:
126126
# Artifact name
127127
name: SlimeVR-GUI-macOS

.github/workflows/generate-update-manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run: |
2121
npx @slimevr/update-manifest-generator@latest
2222
23-
- uses: actions/upload-artifact@v5
23+
- uses: actions/upload-artifact@v6
2424
with:
2525
name: "update-manifest.json"
2626
path: ./update-manifest.json

.github/workflows/gradle.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
run: ./gradlew :server:desktop:shadowJar
6969

7070
- name: Upload the Server JAR as a Build Artifact
71-
uses: actions/upload-artifact@v5
71+
uses: actions/upload-artifact@v6
7272
with:
7373
# Artifact name
7474
name: 'SlimeVR-Server' # optional, default is artifact
@@ -127,7 +127,7 @@ jobs:
127127
ANDROID_KEY_PASSWD: ${{ secrets.ANDROID_KEY_PASSWD }}
128128

129129
- name: Upload the Android build artifact
130-
uses: actions/upload-artifact@v5
130+
uses: actions/upload-artifact@v6
131131
with:
132132
# Artifact name
133133
name: 'SlimeVR-Android' # optional, default is artifact
@@ -158,7 +158,7 @@ jobs:
158158
ANDROID_KEY_PASSWD: ${{ secrets.ANDROID_GPLAY_KEY_PASSWD }}
159159

160160
- name: Upload the Google Play artifact
161-
uses: actions/upload-artifact@v5
161+
uses: actions/upload-artifact@v6
162162
if: startsWith(github.ref, 'refs/tags/')
163163
with:
164164
# Artifact name
@@ -230,23 +230,23 @@ jobs:
230230
run: |
231231
tar czf slimevr-gui-dist.tar.gz -C gui/dist/ .
232232
233-
- uses: actions/upload-artifact@v5
233+
- uses: actions/upload-artifact@v6
234234
if: matrix.os == 'ubuntu-latest'
235235
with:
236236
name: SlimeVR-GUI-Dist
237237
path: ./slimevr-gui-dist.tar.gz
238238

239-
- uses: actions/upload-artifact@v5
239+
- uses: actions/upload-artifact@v6
240240
with:
241241
name: ${{ format('SlimeVR-GUI-Deb-{0}', env.BUILD_ARCH) }}
242242
path: target/release/bundle/deb/slimevr*.deb
243243

244-
- uses: actions/upload-artifact@v5
244+
- uses: actions/upload-artifact@v6
245245
with:
246246
name: ${{ format('SlimeVR-GUI-AppImage-{0}', env.BUILD_ARCH) }}
247247
path: target/release/bundle/appimage/slimevr*.AppImage
248248

249-
- uses: actions/upload-artifact@v5
249+
- uses: actions/upload-artifact@v6
250250
with:
251251
name: ${{ format('SlimeVR-GUI-RPM-{0}', env.BUILD_ARCH) }}
252252
path: target/release/bundle/rpm/slimevr*.rpm
@@ -320,12 +320,12 @@ jobs:
320320
--volicon ../macos/SlimeVR.app/Contents/Resources/icon.icns --skip-jenkins \
321321
--eula ../../../../../LICENSE-MIT slimevr.dmg ../macos/SlimeVR.app
322322
323-
- uses: actions/upload-artifact@v5
323+
- uses: actions/upload-artifact@v6
324324
with:
325325
name: SlimeVR-GUI-MacApp
326326
path: target/universal-apple-darwin/release/bundle/macos/SlimeVR*.app
327327

328-
- uses: actions/upload-artifact@v5
328+
- uses: actions/upload-artifact@v6
329329
with:
330330
name: SlimeVR-GUI-MacDmg
331331
path: target/universal-apple-darwin/release/bundle/dmg/slimevr.dmg
@@ -399,7 +399,7 @@ jobs:
399399
cp target/release/slimevr.exe ./SlimeVR/
400400
7z a -tzip "SlimeVR-$BUILD_ARCH.zip" ./SlimeVR/
401401
402-
- uses: actions/upload-artifact@v5
402+
- uses: actions/upload-artifact@v6
403403
with:
404404
name: ${{ format('SlimeVR-GUI-Windows-{0}', env.BUILD_ARCH) }}
405405
path: ./SlimeVR*.zip

0 commit comments

Comments
 (0)