File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -46,17 +46,19 @@ jobs:
4646 run : ./gradlew testDebug
4747
4848 - name : Upload build outputs (APKs)
49- uses : actions/upload-artifact@v3
49+ uses : actions/upload-artifact@v4
5050 with :
5151 name : build-outputs
5252 path : app/build/outputs
53+ overwrite : true
5354
5455 - name : Upload build reports
5556 if : always()
56- uses : actions/upload-artifact@v3
57+ uses : actions/upload-artifact@v4
5758 with :
5859 name : build-reports
5960 path : app/build/reports
61+ overwrite : true
6062
6163 androidTest :
6264 needs : build
@@ -112,7 +114,8 @@ jobs:
112114
113115 - name : Upload test reports
114116 if : always()
115- uses : actions/upload-artifact@v3
117+ uses : actions/upload-artifact@v4
116118 with :
117119 name : test-reports-${{ matrix.api-level }}
118120 path : ' */build/reports/androidTests'
121+ overwrite : true
You can’t perform that action at this time.
0 commit comments