From 191821146b1e803777c77693f3f00226243964d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Mar 2026 02:03:38 +0000 Subject: [PATCH] Bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' 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 fddb5267..87f52e7e 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@v6 + uses: actions/upload-artifact@v7 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 cc03689a..fcd9c41d 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@v6 + uses: actions/upload-artifact@v7 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 e145bada..d94ebbb8 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@v6 + uses: actions/upload-artifact@v7 with: name: test-results-${{ matrix.os }}-${{ matrix.java }} path: '**/build/test-results/test/TEST-*.xml'