|
14 | 14 | runs-on: ubuntu-latest
|
15 | 15 | steps:
|
16 | 16 | - name: Clone repository
|
17 |
| - uses: actions/checkout@v2 |
| 17 | + uses: actions/checkout@v4 |
18 | 18 |
|
19 | 19 | - name: Build APKs
|
20 | 20 | shell: bash {0}
|
@@ -66,47 +66,47 @@ jobs:
|
66 | 66 | fi
|
67 | 67 |
|
68 | 68 | - name: Attach universal APK file
|
69 |
| - uses: actions/upload-artifact@v2 |
| 69 | + uses: actions/upload-artifact@v4 |
70 | 70 | with:
|
71 | 71 | name: ${{ env.APK_BASENAME_PREFIX }}_universal
|
72 | 72 | path: |
|
73 | 73 | ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_universal.apk
|
74 | 74 | ${{ env.APK_DIR_PATH }}/output-metadata.json
|
75 | 75 |
|
76 | 76 | - name: Attach arm64-v8a APK file
|
77 |
| - uses: actions/upload-artifact@v2 |
| 77 | + uses: actions/upload-artifact@v4 |
78 | 78 | with:
|
79 | 79 | name: ${{ env.APK_BASENAME_PREFIX }}_arm64-v8a
|
80 | 80 | path: |
|
81 | 81 | ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_arm64-v8a.apk
|
82 | 82 | ${{ env.APK_DIR_PATH }}/output-metadata.json
|
83 | 83 |
|
84 | 84 | - name: Attach armeabi-v7a APK file
|
85 |
| - uses: actions/upload-artifact@v2 |
| 85 | + uses: actions/upload-artifact@v4 |
86 | 86 | with:
|
87 | 87 | name: ${{ env.APK_BASENAME_PREFIX }}_armeabi-v7a
|
88 | 88 | path: |
|
89 | 89 | ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_armeabi-v7a.apk
|
90 | 90 | ${{ env.APK_DIR_PATH }}/output-metadata.json
|
91 | 91 |
|
92 | 92 | - name: Attach x86_64 APK file
|
93 |
| - uses: actions/upload-artifact@v2 |
| 93 | + uses: actions/upload-artifact@v4 |
94 | 94 | with:
|
95 | 95 | name: ${{ env.APK_BASENAME_PREFIX }}_x86_64
|
96 | 96 | path: |
|
97 | 97 | ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_x86_64.apk
|
98 | 98 | ${{ env.APK_DIR_PATH }}/output-metadata.json
|
99 | 99 |
|
100 | 100 | - name: Attach x86 APK file
|
101 |
| - uses: actions/upload-artifact@v2 |
| 101 | + uses: actions/upload-artifact@v4 |
102 | 102 | with:
|
103 | 103 | name: ${{ env.APK_BASENAME_PREFIX }}_x86
|
104 | 104 | path: |
|
105 | 105 | ${{ env.APK_DIR_PATH }}/${{ env.APK_BASENAME_PREFIX }}_x86.apk
|
106 | 106 | ${{ env.APK_DIR_PATH }}/output-metadata.json
|
107 | 107 |
|
108 | 108 | - name: Attach sha256sums file
|
109 |
| - uses: actions/upload-artifact@v2 |
| 109 | + uses: actions/upload-artifact@v4 |
110 | 110 | with:
|
111 | 111 | name: sha256sums
|
112 | 112 | path: |
|
|
0 commit comments