diff --git a/.github/workflows/api-level-lint.yml b/.github/workflows/api-level-lint.yml index dabe0cb8..2bd65fee 100644 --- a/.github/workflows/api-level-lint.yml +++ b/.github/workflows/api-level-lint.yml @@ -26,7 +26,7 @@ jobs: run: ./gradlew --no-daemon build -Pandroid=true - name: Upload linting results if: failure() && steps.lint.outcome == 'failure' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: lint-report path: ./**/build/reports diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9849c7e..7f434afb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,14 +22,14 @@ jobs: run: ./gradlew --no-daemon build -Pjava8=true - name: Upload Unit Test Results if: ${{ always() }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: Unit Tests path: | components/**/build/reports/tests/test/** components/**/build-test-results/** - name: Upload a Build Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: ${{ inputs.componentName }}-drop path: ./**/build/*