From d320002065b19235a1dbeb35cf2f9b0af4492715 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Nov 2025 18:41:27 +0000 Subject: [PATCH] Dependabot: Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e46bec5..6d0165ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,14 +92,14 @@ jobs: run: ./mvnw --batch-mode --no-transfer-progress --strict-checksums --fail-at-end -update-snapshots --show-version --errors clean verify - name: Upload Test Results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: always() with: name: test-results-${{ matrix.os }} path: tests/**/target/surefire-reports/*.xml - name: Upload p2 Repository - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: success() && matrix.os == 'ubuntu-latest' with: name: p2-repository @@ -107,7 +107,7 @@ jobs: if-no-files-found: error - name: Upload Products - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: success() && matrix.os == 'ubuntu-latest' with: name: products @@ -125,7 +125,7 @@ jobs: # needed for publishing test results from forks steps: - name: Upload - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ci-event-file path: ${{ github.event_path }}