Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions/upload-artifact action to v4 #447

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Build App
run: ./gradlew :app:assembleDebug --no-build-cache

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: app-debug
path: app/build/outputs/apk/debug/app-debug.apk
Expand All @@ -42,7 +42,7 @@ jobs:
- name: lintDebug
run: ./gradlew lint

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: android-lint-report
path: ~/**/build/reports/lint-results*.html
Expand All @@ -62,7 +62,7 @@ jobs:
- name: detekt
run: ./gradlew detektCheck

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: detekt-report
path: ./**/build/reports/detekt/detekt.*
Expand All @@ -82,7 +82,7 @@ jobs:
- name: konsist
run: ./gradlew konsist_test:test --rerun-tasks

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: konsist-report
path: ./konsist_test/build/reports/*
Expand All @@ -102,7 +102,7 @@ jobs:
- name: detekt
run: ./gradlew spotlessCheck

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: detekt-report
path: ./**/build/reports/detekt/detekt.*
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
- name: unitTest
run: ./gradlew test -x konsist_test:test

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: unit-test-report
path: ./**/build/reports/tests/