Skip to content

Commit 5650b4a

Browse files
Update actions/upload-artifact action to v6
1 parent 1124c0a commit 5650b4a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Build App
3131
run: ./gradlew :app:assembleDebug --no-build-cache
3232

33-
- uses: actions/upload-artifact@v5
33+
- uses: actions/upload-artifact@v6
3434
with:
3535
name: app-debug
3636
path: app/build/outputs/apk/debug/app-debug.apk
@@ -53,7 +53,7 @@ jobs:
5353
- name: lintDebug
5454
run: ./gradlew lint
5555

56-
- uses: actions/upload-artifact@v5
56+
- uses: actions/upload-artifact@v6
5757
if: always()
5858
with:
5959
name: android-lint-report
@@ -80,7 +80,7 @@ jobs:
8080
- name: detekt
8181
run: ./gradlew detektCheck
8282

83-
- uses: actions/upload-artifact@v5
83+
- uses: actions/upload-artifact@v6
8484
if: always()
8585
with:
8686
name: detekt-report
@@ -109,7 +109,7 @@ jobs:
109109
- name: konsist
110110
run: ./gradlew konsist-test:test --rerun-tasks
111111

112-
- uses: actions/upload-artifact@v5
112+
- uses: actions/upload-artifact@v6
113113
if: always()
114114
with:
115115
name: konsist-report
@@ -133,7 +133,7 @@ jobs:
133133
- name: spotlessCheck
134134
run: ./gradlew spotlessCheck
135135

136-
- uses: actions/upload-artifact@v5
136+
- uses: actions/upload-artifact@v6
137137
if: always()
138138
with:
139139
name: spotless-report
@@ -192,7 +192,7 @@ jobs:
192192
- name: unitTest
193193
run: ./gradlew test -x konsist-test:test
194194

195-
- uses: actions/upload-artifact@v5
195+
- uses: actions/upload-artifact@v6
196196
if: always()
197197
with:
198198
name: unit-test-report

0 commit comments

Comments
 (0)