From f8989d290cc3cc648dfa29ab9d1dde2598fbfdb7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 00:57:09 +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/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cced0bc..08ee14e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,7 @@ jobs: IMAGE_BUILD_OPTS="--pull --target ${{ matrix.stage }} --build-arg BUILDKIT_INLINE_CACHE=1" \ build-native-image save-native-image - name: 'Upload artifacts' - uses: 'actions/upload-artifact@v3' + uses: 'actions/upload-artifact@v4' with: name: 'dist-common-stages' path: './dist/' @@ -68,7 +68,7 @@ jobs: "build-${{ matrix.arch }}-image" "save-${{ matrix.arch }}-image" - name: 'Upload artifacts' if: "startsWith(github.ref, 'refs/tags/v') && matrix.arch != 'native'" - uses: 'actions/upload-artifact@v3' + uses: 'actions/upload-artifact@v4' with: name: 'dist-${{ matrix.arch }}' path: './dist/'