Skip to content

Commit 6ff13c0

Browse files
Bump actions/upload-artifact from 6 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4f4c5b8 commit 6ff13c0

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/build-android.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,21 +68,21 @@ jobs:
6868
ANDROID_KEYSTORE_PASS: ${{ secrets.ANDROID_KEYSTORE_PASS }}
6969
- name: Upload a Build Artifact Android APK Signed
7070
if: ${{ matrix.build-type == 'apk' && env.ANDROID_KEYSTORE_PASS != null }}
71-
uses: actions/upload-artifact@v6
71+
uses: actions/upload-artifact@v7
7272
with:
7373
name: Play_Android_Signed
7474
path: Play-release.apk
7575
env:
7676
ANDROID_KEYSTORE_PASS: ${{ secrets.ANDROID_KEYSTORE_PASS }}
7777
- name: Upload a Build Artifact Android APK Unsigned
7878
if: ${{ matrix.build-type == 'apk' }}
79-
uses: actions/upload-artifact@v6
79+
uses: actions/upload-artifact@v7
8080
with:
8181
name: Play_Android_APK_Unsigned
8282
path: Play-release-unsigned.apk
8383
- name: Upload a Build Artifact Android libretro
8484
if: ${{ matrix.build-type == 'libretro' }}
85-
uses: actions/upload-artifact@v6
85+
uses: actions/upload-artifact@v7
8686
with:
8787
name: Play_Android_libretro
8888
path: build_retro/play_libretro_*_android.so

.github/workflows/build-ios.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ jobs:
5252
cd installer_ios
5353
./build_cydia.sh
5454
- name: Upload a Build Artifact ipa/deb/bz2
55-
uses: actions/upload-artifact@v6
55+
uses: actions/upload-artifact@v7
5656
with:
5757
name: Play_iOS
5858
path: |
5959
installer_ios/Play.ipa
6060
installer_ios/Play.deb
6161
installer_ios/Packages.bz2
6262
- name: Upload a Build Artifact libretro
63-
uses: actions/upload-artifact@v6
63+
uses: actions/upload-artifact@v7
6464
with:
6565
name: Play_iOS_libretro
6666
path: build/Source/ui_libretro/Release-iphoneos/play_libretro_ios.dylib

.github/workflows/build-linux.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ jobs:
7474
env:
7575
VERSION: ${{ steps.short_hash.outputs.VALUE }}
7676
- name: Upload a Build Artifact x86_64 AppImage
77-
uses: actions/upload-artifact@v6
77+
uses: actions/upload-artifact@v7
7878
with:
7979
name: Play_Linux_x86_64_AppImage
8080
path: build/Play!-${{ env.SHORT_HASH }}-x86_64.AppImage
8181
env:
8282
SHORT_HASH: ${{ steps.short_hash.outputs.VALUE }}
8383
- name: Upload a Build Artifact x86_64 Libretro
84-
uses: actions/upload-artifact@v6
84+
uses: actions/upload-artifact@v7
8585
with:
8686
name: Play_Linux_x86_64_libretro
8787
path: build/Source/ui_libretro/play_libretro.so

.github/workflows/build-macos.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ jobs:
7171
cd build
7272
appdmg ../installer_macos/spec.json Play.dmg
7373
- name: Upload a Build Artifact dmg
74-
uses: actions/upload-artifact@v6
74+
uses: actions/upload-artifact@v7
7575
with:
7676
name: Play_MacOS_dmg
7777
path: build/Play.dmg
7878
- name: Upload a Build Artifact libretro
79-
uses: actions/upload-artifact@v6
79+
uses: actions/upload-artifact@v7
8080
with:
8181
name: Play_MacOS_libretro
8282
path: build/Source/ui_libretro/Release/play_libretro.dylib

.github/workflows/build-windows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ jobs:
8787
cd ..
8888
makensis.exe ./installer_win32/${{ matrix.installer-script}}
8989
- name: Upload a Build Artifact Installer
90-
uses: actions/upload-artifact@v6
90+
uses: actions/upload-artifact@v7
9191
with:
9292
name: Play_Windows_${{ matrix.target-platform }}_Installer
9393
path: installer_win32\*.exe
9494
- name: Upload a Build Artifact Libretro Core
95-
uses: actions/upload-artifact@v6
95+
uses: actions/upload-artifact@v7
9696
with:
9797
name: Play_Windows_${{ matrix.target-platform }}_libretro
9898
path: build\Source\ui_libretro\Release\play_libretro.dll

0 commit comments

Comments
 (0)