Skip to content

Commit 2cf4e98

Browse files
committed
upgrade GitHub Actions dependencies
1 parent 09a85f5 commit 2cf4e98

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
APK=$(dirname $APK)
6969
echo "APK=$APK" >> $GITHUB_ENV
7070
- name: Upload Artifacts
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v5
7272
with:
7373
name: NekoBoxs
7474
path: ${{ env.APK }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
APK=$(dirname $APK)
7979
echo "APK=$APK" >> $GITHUB_ENV
8080
# - name: Upload Artifacts
81-
# uses: actions/upload-artifact@v4
81+
# uses: actions/upload-artifact@v5
8282
# with:
8383
# name: APKs
8484
# path: ${{ env.APK }}

.github/workflows/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
APK=$(find app/build/outputs/apk -name '*arm64-v8a*.apk')
6464
APK=$(dirname $APK)
6565
echo "APK=$APK" >> $GITHUB_ENV
66-
- uses: actions/upload-artifact@v4
66+
- uses: actions/upload-artifact@v5
6767
with:
6868
name: APKs
6969
path: ${{ env.APK }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
APK=$(find app/build/outputs/apk -name '*arm64-v8a*.apk')
7070
APK=$(dirname $APK)
7171
echo "APK=$APK" >> $GITHUB_ENV
72-
- uses: actions/upload-artifact@v4
72+
- uses: actions/upload-artifact@v5
7373
with:
7474
name: APKs
7575
path: ${{ env.APK }}
@@ -82,7 +82,7 @@ jobs:
8282
- name: Checkout
8383
uses: actions/checkout@v5
8484
- name: Donwload Artifacts
85-
uses: actions/download-artifact@v4
85+
uses: actions/download-artifact@v5
8686
with:
8787
name: APKs
8888
path: artifacts

0 commit comments

Comments
 (0)