diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c2438a8..cfd0c49 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 @@ -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: | diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index a248911..8e61abf 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -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 @@ -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