From 85716be58c54f3d4b95af0c2997103ef1e8b90f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Oct 2025 23:18:48 +0000 Subject: [PATCH] Bump the dependencies group with 2 updates Bumps the dependencies group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `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) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/main-build.yml | 2 +- .github/workflows/resteasy-build.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main-build.yml b/.github/workflows/main-build.yml index 78adca0..9137698 100644 --- a/.github/workflows/main-build.yml +++ b/.github/workflows/main-build.yml @@ -61,7 +61,7 @@ jobs: cache: 'maven' - name: Build with Maven - ${{ matrix.os }} - JDK ${{ matrix.java }} run: mvn -B -ntp clean install -fae '-Djava11.home=${{env.JAVA_HOME_11_X64}}' - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: failure() with: name: surefire-reports-${{ matrix.os }}-jdk-${{ matrix.java }} diff --git a/.github/workflows/resteasy-build.yml b/.github/workflows/resteasy-build.yml index 16105e1..d204777 100644 --- a/.github/workflows/resteasy-build.yml +++ b/.github/workflows/resteasy-build.yml @@ -45,7 +45,7 @@ jobs: steps: - name: Checkout RESTEasy Vert.x uses: actions/checkout@v5 - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v6 with: name: resteasy-maven-repository path: . @@ -67,20 +67,20 @@ jobs: - name: Build and Test RESTEasy Vert.x Java ${{ matrix.java }} - ${{ matrix.os }} run: | mvn clean install -B '-Dversion.org.jboss.resteasy=${{ needs.resteasy-build.outputs.resteasy-version }}' '-Djava11.home=${{env.JAVA_HOME_11_X64}}' - - 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 }}