Merge pull request #486 from bunkerity/dependabot/github_actions/dev/docker/build-push-action-4

deps/gha: bump docker/build-push-action from 3 to 4
This commit is contained in:
Théophile Diot 2023-08-21 11:44:34 -04:00 committed by GitHub
commit d670b409bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -88,7 +88,7 @@ jobs:
# Build cached image
- name: Build image
if: inputs.CACHE == true
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
file: ${{ inputs.DOCKERFILE }}
@ -100,7 +100,7 @@ jobs:
# Build non-cached image
- name: Build image
if: inputs.CACHE != true
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
file: ${{ inputs.DOCKERFILE }}

View file

@ -96,7 +96,7 @@ jobs:
# Build testing package image
- name: Build package image
if: inputs.RELEASE == 'testing'
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
load: true
@ -108,7 +108,7 @@ jobs:
# Build non-testing package image
- name: Build package image
if: inputs.RELEASE != 'testing'
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
load: true
@ -138,7 +138,7 @@ jobs:
# Build test image
- name: Build test image
if: inputs.TEST == true
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
file: tests/linux/Dockerfile-${{ inputs.LINUX }}

View file

@ -53,7 +53,7 @@ jobs:
platforms: linux/arm64,linux/arm/v7,linux/arm/v6
# Build and push
- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
file: ${{ inputs.DOCKERFILE }}