Skip to content

Commit 708281c

Browse files
Changed: Bump actions/checkout and actions/upload-artifact to v4
1 parent eb0cb40 commit 708281c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/debug_build.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Clone repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818

1919
- name: Build APKs
2020
shell: bash {0}
@@ -66,47 +66,47 @@ jobs:
6666
fi
6767
6868
- name: Attach universal APK file
69-
uses: actions/upload-artifact@v2
69+
uses: actions/upload-artifact@v4
7070
with:
7171
name: ${{ env.APK_BASENAME_PREFIX }}_universal
7272
path: |
7373
${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_universal.apk
7474
${{ env.APK_DIR_PATH }}/output-metadata.json
7575
7676
- name: Attach arm64-v8a APK file
77-
uses: actions/upload-artifact@v2
77+
uses: actions/upload-artifact@v4
7878
with:
7979
name: ${{ env.APK_BASENAME_PREFIX }}_arm64-v8a
8080
path: |
8181
${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_arm64-v8a.apk
8282
${{ env.APK_DIR_PATH }}/output-metadata.json
8383
8484
- name: Attach armeabi-v7a APK file
85-
uses: actions/upload-artifact@v2
85+
uses: actions/upload-artifact@v4
8686
with:
8787
name: ${{ env.APK_BASENAME_PREFIX }}_armeabi-v7a
8888
path: |
8989
${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_armeabi-v7a.apk
9090
${{ env.APK_DIR_PATH }}/output-metadata.json
9191
9292
- name: Attach x86_64 APK file
93-
uses: actions/upload-artifact@v2
93+
uses: actions/upload-artifact@v4
9494
with:
9595
name: ${{ env.APK_BASENAME_PREFIX }}_x86_64
9696
path: |
9797
${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_x86_64.apk
9898
${{ env.APK_DIR_PATH }}/output-metadata.json
9999
100100
- name: Attach x86 APK file
101-
uses: actions/upload-artifact@v2
101+
uses: actions/upload-artifact@v4
102102
with:
103103
name: ${{ env.APK_BASENAME_PREFIX }}_x86
104104
path: |
105105
${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_x86.apk
106106
${{ env.APK_DIR_PATH }}/output-metadata.json
107107
108108
- name: Attach sha256sums file
109-
uses: actions/upload-artifact@v2
109+
uses: actions/upload-artifact@v4
110110
with:
111111
name: sha256sums
112112
path: |

.github/workflows/gradle-wrapper-validation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ jobs:
1515
name: "Validation"
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- uses: gradle/wrapper-validation-action@v1

.github/workflows/run_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Clone repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919
- name: Execute tests
2020
run: |
2121
./gradlew test

0 commit comments

Comments
 (0)