Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
} >> "$GITHUB_OUTPUT"

- name: Upload release artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: UpChat-Release
if-no-files-found: error
Expand All @@ -177,7 +177,7 @@ jobs:
run: cp "${{ github.workspace }}/app/build/reports/lint-results-debug.html" ./lint-results-debug.html

- name: Upload check results to artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Linting_Result
path: ./lint-results-debug.html
Expand All @@ -187,7 +187,7 @@ jobs:

- name: Upload problem report on failure
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: gradle-problem-report
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Upload ktlint report
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ktlint-report
path: ~/build/reports/ktlint-report.json
Expand All @@ -67,7 +67,7 @@ jobs:

- name: Upload Lint Report
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: android-lint-report
path: app/build/reports/lint-results-debug.html
Expand Down
Loading