Skip to content

Commit

Permalink
Merge pull request #5381 from ecamp/renovate/docker-build-push-action…
Browse files Browse the repository at this point in the history
…-6.x

chore(deps): update docker/build-push-action action to v6
  • Loading branch information
usu committed Jun 18, 2024
2 parents 39f93fd + b836d60 commit ec6d2a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/reusable-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
password: ${{ secrets.DOCKER_HUB_PASSWORD }}

- name: Build and push frontend docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
file: .docker-hub/frontend/Dockerfile
Expand All @@ -53,7 +53,7 @@ jobs:
cache-to: type=gha,scope=frontend,mode=max

- name: Build and push api docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
file: api/Dockerfile
Expand All @@ -66,7 +66,7 @@ jobs:
cache-to: type=gha,scope=api,mode=max

- name: Build and push print docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
file: .docker-hub/print/Dockerfile
Expand All @@ -83,7 +83,7 @@ jobs:
cache-to: type=gha,scope=print,mode=max

- name: Build and push varnish docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
file: .docker-hub/varnish/Dockerfile
Expand All @@ -95,7 +95,7 @@ jobs:
cache-to: type=gha,scope=varnish,mode=max

- name: Build and push db-backup-restore docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
file: .helm/ecamp3/files/db-backup-restore-image/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-e2e-tests-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

# build API (using cache; provide image to docker compose)
- name: Build docker image (API/PHP)
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: api/Dockerfile
context: './api'
Expand Down

0 comments on commit ec6d2a2

Please sign in to comment.