Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update docker/build-push-action action to v6 #5381

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading