From 2eca7865c9aa1fdfed3f9aed45f0ae7c007d4fe9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 02:05:05 +0000 Subject: [PATCH] Bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-prb.yml | 2 +- .github/workflows/ci-release.yml | 2 +- .github/workflows/ci-snapshot.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-prb.yml b/.github/workflows/ci-prb.yml index b330db43..ca840ca8 100644 --- a/.github/workflows/ci-prb.yml +++ b/.github/workflows/ci-prb.yml @@ -33,7 +33,7 @@ jobs: run: sudo -E env "PATH=$PATH" bash -c "ulimit -l 65536 && ulimit -a && ./gradlew --no-daemon --parallel clean test" - name: Upload Test Results if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: test-results-${{ matrix.os }}-${{ matrix.java }} path: '**/build/test-results/test/TEST-*.xml' diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index f790bcb6..1155ad3a 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -35,7 +35,7 @@ jobs: ./gradlew --no-daemon --parallel publish" - name: Upload Test Results if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: test-results-${{ matrix.os }}-${{ matrix.java }} path: '**/build/test-results/test/TEST-*.xml' diff --git a/.github/workflows/ci-snapshot.yml b/.github/workflows/ci-snapshot.yml index 34672e55..ac09582a 100644 --- a/.github/workflows/ci-snapshot.yml +++ b/.github/workflows/ci-snapshot.yml @@ -40,7 +40,7 @@ jobs: || exit 1) || exit 0" - name: Upload Test Results if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: test-results-${{ matrix.os }}-${{ matrix.java }} path: '**/build/test-results/test/TEST-*.xml'