Skip to content

Commit

Permalink
Build(deps): Bump docker/build-push-action from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2 to 3.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v2...v3)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and pascalandy committed May 9, 2022
1 parent 2dad2c0 commit b4e3cad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
password: ${{ secrets.TOKEN_GPR }}
- name: Build UAT on linux/amd64
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
push: false
load: true # Export to Docker Engine rather than pushing to a registry
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
# The difference between EDGE and MASTER: Master branch should build multi-platform while MASTER is limited to linux/amd64
- name: Build EDGE and push image
if: github.ref != 'refs/heads/master'
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: .
file: ./${{ env.DOCKERFILE }}
Expand All @@ -245,7 +245,7 @@ jobs:

- name: Build MASTER and push image
if: github.ref == 'refs/heads/master'
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: .
file: ./${{ env.DOCKERFILE }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/multi_arch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:

- name: Build UAT on linux/amd64
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
push: false
load: true # Export to Docker Engine rather than pushing to a registry
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:

- name: Build linux/arm64/v8
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
push: false
load: true # Export to Docker Engine rather than pushing to a registry
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:

- name: Build linux/arm/v7
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
push: false
load: true # Export to Docker Engine rather than pushing to a registry
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:

- name: Build linux/arm/v6
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
push: false
load: true # Export to Docker Engine rather than pushing to a registry
Expand Down

0 comments on commit b4e3cad

Please sign in to comment.