Merge pull request #10 from hectorm/dependabot/github_actions/actions/upload-artifact-4

Bump actions/upload-artifact from 3 to 4
This commit is contained in:
Héctor Molinero Fernández 2023-12-18 20:38:30 +01:00 committed by GitHub
commit 21b6e9e4a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ jobs:
IMAGE_BUILD_OPTS="--pull --target ${{ matrix.stage }} --build-arg BUILDKIT_INLINE_CACHE=1" \ IMAGE_BUILD_OPTS="--pull --target ${{ matrix.stage }} --build-arg BUILDKIT_INLINE_CACHE=1" \
build-native-image save-native-image build-native-image save-native-image
- name: 'Upload artifacts' - name: 'Upload artifacts'
uses: 'actions/upload-artifact@v3' uses: 'actions/upload-artifact@v4'
with: with:
name: 'dist-common-stages' name: 'dist-common-stages'
path: './dist/' path: './dist/'
@ -68,7 +68,7 @@ jobs:
"build-${{ matrix.arch }}-image" "save-${{ matrix.arch }}-image" "build-${{ matrix.arch }}-image" "save-${{ matrix.arch }}-image"
- name: 'Upload artifacts' - name: 'Upload artifacts'
if: "startsWith(github.ref, 'refs/tags/v') && matrix.arch != 'native'" if: "startsWith(github.ref, 'refs/tags/v') && matrix.arch != 'native'"
uses: 'actions/upload-artifact@v3' uses: 'actions/upload-artifact@v4'
with: with:
name: 'dist-${{ matrix.arch }}' name: 'dist-${{ matrix.arch }}'
path: './dist/' path: './dist/'