Skip to content

Commit 2f917f0

Browse files
Use actions/upload-artifact v4
1 parent cd6ebe7 commit 2f917f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/feature-branch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434
- name: Android Lint
3535
run: ./gradlew lintDebug
3636
- name: Upload Android Lint Report
37-
uses: actions/upload-artifact@v2
37+
uses: actions/upload-artifact@v4
3838
with:
3939
name: android-lint-report
4040
path: build/reports/android-lint.html
4141
# step 4
4242
- name: Run Unit Tests
4343
run: ./gradlew testDebugUnitTest
4444
- name: Upload Unit Test Reports
45-
uses: actions/upload-artifact@v2
45+
uses: actions/upload-artifact@v4
4646
if: always()
4747
with:
4848
name: unit-test-report
@@ -70,7 +70,7 @@ jobs:
7070
# step 2
7171
- name: Upload results
7272
if: always()
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: instrumentation-test-results
7676
path: build/androidTest-results

0 commit comments

Comments
 (0)