From 8b79d5a0fb0f74442bc25eb341bf1bda4006fe10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 Apr 2022 07:51:28 +0000 Subject: [PATCH] GitHub Actions(deps): Bump actions/upload-artifact from 2 to 3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 44886f53..70a89718 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: echo $PLAIN_VERSION > PLAIN_VERSION echo $NEXT_VERSION > NEXT_VERSION - name: Upload version files - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: artifacts path: | @@ -81,7 +81,7 @@ jobs: - name: Build and Create distribution run: ./mvnw -B --file pom.xml package -DskipTests -P ui,${{ matrix.flavor }},${{ matrix.flavor }}-distribution - name: Upload build artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: artifacts path: | @@ -137,7 +137,7 @@ jobs: # - name: Create distribution # run: ./mvnw -B --file pom.xml package -DskipTests -P ${{ matrix.flavor }},${{ matrix.flavor }}-native-distribution # - name: Upload build artifact - # uses: actions/upload-artifact@v2 + # uses: actions/upload-artifact@v3 # with: # name: artifacts # path: | @@ -186,7 +186,7 @@ jobs: - name: Save container image run: docker save -o searchpe-${{ matrix.flavor }}-container-image.tar quay.io/projectopenubl/searchpe-${{ matrix.flavor }}:latest - name: Upload container image - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: artifacts path: searchpe-${{ matrix.flavor }}-container-image.tar