Skip to content

Commit ec5b33b

Browse files
chore(deps): update actions/upload-artifact action to v4 (AndroidIDEOfficial#1654)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent af677b0 commit ec5b33b

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,23 +81,23 @@ jobs:
8181
run: |
8282
cp app/build/outputs/apk/${{ matrix.build_type }}/app-*.apk ./
8383
- name: Upload arm64-v8a ${{ matrix.build_type }} APK
84-
uses: actions/upload-artifact@v3
84+
uses: actions/upload-artifact@v4
8585
with:
8686
name: apk-arm64-v8a-${{ matrix.build_type }}
8787
path: app-arm64-v8a-${{ matrix.build_type }}.apk
8888
- name: Upload armeabi-v7a ${{ matrix.build_type }} APK
89-
uses: actions/upload-artifact@v3
89+
uses: actions/upload-artifact@v4
9090
with:
9191
name: apk-armeabi-v7a-${{ matrix.build_type }}
9292
path: app-armeabi-v7a-${{ matrix.build_type }}.apk
9393
- name: Upload x86_64 ${{ matrix.build_type }} APK
94-
uses: actions/upload-artifact@v3
94+
uses: actions/upload-artifact@v4
9595
with:
9696
name: apk-x86_64-${{ matrix.build_type }}
9797
path: app-x86_64-${{ matrix.build_type }}.apk
9898
- name: Upload ${{ matrix.build_type }} mappings
9999
if: ${{ matrix.build_type == 'release' }}
100-
uses: actions/upload-artifact@v3
100+
uses: actions/upload-artifact@v4
101101
with:
102102
name: release-mappings
103103
path: '**/build/outputs/mapping'
@@ -132,7 +132,7 @@ jobs:
132132
ANDROIDIDE_TEST: true
133133
- name: Upload test reports
134134
if: ${{ always() }}
135-
uses: actions/upload-artifact@v3
135+
uses: actions/upload-artifact@v4
136136
with:
137137
name: test-results-unit-tests
138138
path: '**/build/reports/tests/'
@@ -168,7 +168,7 @@ jobs:
168168
TEST_TOOLING_API_IMPL: true
169169
- name: Upload test reports
170170
if: ${{ always() }}
171-
uses: actions/upload-artifact@v3
171+
uses: actions/upload-artifact@v4
172172
with:
173173
name: test-results-tooling-api-tests
174174
path: '**/build/reports/tests/'
@@ -216,7 +216,7 @@ jobs:
216216
script: ./gradlew connectedCheck
217217
- name: Upload test reports
218218
if: ${{ always() }}
219-
uses: actions/upload-artifact@v3
219+
uses: actions/upload-artifact@v4
220220
with:
221221
name: test-results-android-tests-${{ matrix.api-level }}-${{ matrix.target }}
222222
path: '**/build/reports/androidTests/'
@@ -277,7 +277,7 @@ jobs:
277277
- name: Publish release
278278
run: ./gradlew nyxMake nyxMark nyxPublish publish release --stacktrace
279279
- name: Archive Nyx state file
280-
uses: actions/upload-artifact@v3
280+
uses: actions/upload-artifact@v4
281281
if: ${{ always() }}
282282
with:
283283
name: .nyx-state-${{ github.job }}.json

.github/workflows/crowdin_contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
rm ${{ env.CONTRIBUTORS_JSON_FILENAME }}_staging.json
4646
4747
- name: Upload JSON report
48-
uses: actions/upload-artifact@v3
48+
uses: actions/upload-artifact@v4
4949
with:
5050
name: crowdin-contributors-json
5151
path: ${{ env.CONTRIBUTORS_JSON_FILENAME }}.json

0 commit comments

Comments
 (0)