deps/gha: bump docker/build-push-action from 3 to 4

Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 4.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v3...v4)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2023-05-22 22:39:34 +00:00 committed by GitHub
parent 3b7d8b6c11
commit a586b5b6be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -85,7 +85,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 }}
@ -97,7 +97,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

@ -93,7 +93,7 @@ jobs:
# Build staging package image
- name: Build package image
if: inputs.RELEASE == 'staging'
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
load: true
@ -105,7 +105,7 @@ jobs:
# Build non-staging package image
- name: Build package image
if: inputs.RELEASE != 'staging'
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
load: true
@ -135,7 +135,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 }}