Skip to content

Commit a861b77

Browse files
committed
1 parent 73a0ec7 commit a861b77

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Assemble ${{ matrix.target }} debug apk
4141
run: ./gradlew assemble${{ matrix.target }}Debug $CI_GRADLE_ARG_PROPERTIES
4242
- name: Upload ${{ matrix.target }} debug APKs
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: vector-${{ matrix.target }}-debug
4646
path: |
@@ -69,7 +69,7 @@ jobs:
6969
- name: Assemble GPlay unsigned apk
7070
run: ./gradlew clean assembleGplayRelease $CI_GRADLE_ARG_PROPERTIES
7171
- name: Upload Gplay unsigned APKs
72-
uses: actions/upload-artifact@v3
72+
uses: actions/upload-artifact@v4
7373
with:
7474
name: vector-gplay-release-unsigned
7575
path: |
@@ -81,7 +81,7 @@ jobs:
8181
steps:
8282
- name: Obtain apk from artifact
8383
id: download
84-
uses: actions/download-artifact@v3
84+
uses: actions/download-artifact@v4
8585
with:
8686
name: vector-gplay-release-unsigned
8787
- name: Show apks in artifact
@@ -92,7 +92,7 @@ jobs:
9292
# Don't fail when finding trackers so they can be reported later
9393
args: /github/workspace/gplay/release/vector-gplay-universal-release-unsigned.apk -j -o /github/workspace/exodus.json -e 0
9494
- name: Upload exodus json report
95-
uses: actions/upload-artifact@v3
95+
uses: actions/upload-artifact@v4
9696
with:
9797
name: exodus.json
9898
path: |

.github/workflows/post-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
adb logcat >> emulator.log &
7878
./gradlew $CI_GRADLE_ARG_PROPERTIES connectedGplayDebugAndroidTest -Pandroid.testInstrumentationRunnerArguments.class=im.vector.app.ui.UiAllScreensSanityTest || (adb pull storage/emulated/0/Pictures/failure_screenshots && exit 1 )
7979
- name: Upload Test Report Log
80-
uses: actions/upload-artifact@v3
80+
uses: actions/upload-artifact@v4
8181
if: always()
8282
with:
8383
name: uitest-error-results

.github/workflows/quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
./gradlew vector-app:lintFdroidRelease $CI_GRADLE_ARG_PROPERTIES
7272
- name: Upload reports
7373
if: always()
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
with:
7676
name: linting-report
7777
path: |
@@ -115,7 +115,7 @@ jobs:
115115
run: ./gradlew dependencyCheckAnalyze $CI_GRADLE_ARG_PROPERTIES
116116
- name: Upload dependency analysis
117117
if: always()
118-
uses: actions/upload-artifact@v3
118+
uses: actions/upload-artifact@v4
119119
with:
120120
name: dependency-analysis
121121
path: build/reports/dependency-check-report.html

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
- name: Archive Screenshot Results on Error
4747
if: failure()
48-
uses: actions/upload-artifact@v3
48+
uses: actions/upload-artifact@v4
4949
with:
5050
name: screenshot-results
5151
path: |
@@ -98,7 +98,7 @@ jobs:
9898
### ./gradlew generateCoverageReport $CI_GRADLE_ARG_PROPERTIES
9999

100100
- name: Upload Integration Test Report Log
101-
uses: actions/upload-artifact@v3
101+
uses: actions/upload-artifact@v4
102102
if: always()
103103
with:
104104
name: integration-test-error-results

0 commit comments

Comments
 (0)