From 64614697e0c4850e00ecd8cc4e3f99d6a95e88a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 19:27:55 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 382f52d1..55e530ea 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -35,7 +35,7 @@ jobs: check-latest: true - name: Build with Maven run: ./mvnw -B -V -e -DskipTests=true package - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: java-${{ matrix.java }}-jars path: | @@ -50,7 +50,7 @@ jobs: check-latest: true - name: Test with Maven run: ./mvnw -B -V -e -P coverage verify -Denforcer.skip=true -Dmaven.resources.skip=true -Dmaven.main.skip=true -Dassembly.skipAssembly=true -Dmaven.javadoc.skip=true -DskipITs=false - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: java-${{ matrix.java }}-testresults path: |