From 7ce8a18642729f278ad6184b8d025aa53483ce26 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 22:39:48 +0000 Subject: [PATCH] chore(deps): update actions/upload-artifact action to v6 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5c063be..4fa9dc3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -87,7 +87,7 @@ jobs: run: ./gradlew clean assemble - name: Archive Build Artifacts id: archive - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: build-artifacts-${{ matrix.name }}-${{ github.run_id }} path: | @@ -157,7 +157,7 @@ jobs: run: ./gradlew allTests jvmJacocoTestReport - name: Archive Test Reports if: success() || failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: test-report-${{ matrix.name }}-${{ github.run_id }} path: build/reports/tests/ @@ -184,7 +184,7 @@ jobs: echo "| Total Number of Lines | ${{ steps.jacoco_reporter.outputs.total_lines }} |" >> $GITHUB_STEP_SUMMARY - name: Upload Code Coverage Artifacts (Push) if: ${{ github.event_name != 'pull_request' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: coverage-report-${{ matrix.name }}-${{ github.run_id }} path: "*/coverage-results.md"