From e486c3fe9c13de80e734a25d6499bd25d0c38296 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 11:16:54 +0000 Subject: [PATCH] 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/build.yml | 6 +++--- .github/workflows/mp-rest-client-build.yml | 2 +- .github/workflows/resteasy-build.yml | 6 +++--- .github/workflows/shared-build.yml | 2 +- .github/workflows/wildfly-build.yml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a63c980..c5fb824 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,7 +60,7 @@ jobs: - name: Build with Maven Java ${{ matrix.java }} - ${{ matrix.os }} run: | mvn clean install -U -B -fae - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: failure() with: name: surefire-reports-${{ matrix.os }}-${{ matrix.java }} @@ -89,7 +89,7 @@ jobs: - name: Test with Java ${{ matrix.java }} - ${{ matrix.profile }} run: | mvn clean install -U -B -fae ${{ matrix.profile }} - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: failure() with: name: surefire-reports-${{ matrix.profile }}-${{ matrix.java }} @@ -116,7 +116,7 @@ jobs: - name: Test with Java ${{ matrix.java }} - Provision Preview run: | mvn clean install -U -B -fae '-Dprovision.preview' - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: failure() with: name: surefire-reports-preview-${{ matrix.java }} diff --git a/.github/workflows/mp-rest-client-build.yml b/.github/workflows/mp-rest-client-build.yml index 91c8142..1bda599 100644 --- a/.github/workflows/mp-rest-client-build.yml +++ b/.github/workflows/mp-rest-client-build.yml @@ -63,7 +63,7 @@ jobs: cd resteasy-microprofile mvn -B -ntp clean install '-Dversion.org.eclipse.microprofile.rest.client=${{ steps.mp-rest-client-build.outputs.mp-rest-client-version }}' '-Djetty.version=11.0.21' '-Dversion.com.github.tomakehurst.wiremock=3.0.1' - name: Upload surefire reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: surefire-reports diff --git a/.github/workflows/resteasy-build.yml b/.github/workflows/resteasy-build.yml index 838930c..a50cc4a 100644 --- a/.github/workflows/resteasy-build.yml +++ b/.github/workflows/resteasy-build.yml @@ -67,20 +67,20 @@ jobs: - name: Build and Test RESTEasy MicroProfile Java ${{ matrix.java }} - ${{ matrix.os }} run: | mvn clean install -B '-Dversion.org.jboss.resteasy=${{ needs.resteasy-build.outputs.resteasy-version }}' - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: failure() with: name: surefire-reports-${{ matrix.os }}-${{ matrix.java }} path: | '**/surefire-reports/' - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: failure() with: name: failsafe-reports-${{ matrix.os }}-${{ matrix.java }} path: | '**/failsafe-reports/' - name: Upload server logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: server-logs-${{ matrix.os }}-${{ matrix.java }} diff --git a/.github/workflows/shared-build.yml b/.github/workflows/shared-build.yml index fc0b7b7..af9d4fb 100644 --- a/.github/workflows/shared-build.yml +++ b/.github/workflows/shared-build.yml @@ -85,7 +85,7 @@ jobs: run: | cd ~ find ./.m2/repository -type d -name "*SNAPSHOT" -print0 | xargs -0 tar -czf ~/resteasy-mp-maven-repository.tar.gz - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: resteasy-mp-maven-repository path: ~/resteasy-mp-maven-repository.tar.gz diff --git a/.github/workflows/wildfly-build.yml b/.github/workflows/wildfly-build.yml index 14c4b68..1cc6b65 100644 --- a/.github/workflows/wildfly-build.yml +++ b/.github/workflows/wildfly-build.yml @@ -53,14 +53,14 @@ jobs: - name: Build with Maven Java ${{ matrix.java }} run: mvn -B clean install '-Dserver.version=${{ steps.wildfly-nightly.outputs.wildfly-version }}' - name: Upload surefire reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: surefire-reports-${{ matrix.os }}-${{ matrix.java }} path: | '**/surefire-reports/' - name: Upload server logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() with: name: server-logs-${{ matrix.os }}-${{ matrix.java }}