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

Bump docker/build-push-action from 5 to 6 #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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/build-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,39 +22,39 @@ jobs:
-
name: "Build and push 'latest' (8.1 / default tag)"
id: docker_build_latest
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
file: ./php8.1/Dockerfile
tags: outlandish/wordpress:latest
-
name: Build and push php7.4
id: docker_build_php7_4
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
file: ./php7.4/Dockerfile
tags: outlandish/wordpress:php7.4
-
name: Build and push php8.0
id: docker_build_php8_0
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
file: ./php8.0/Dockerfile
tags: outlandish/wordpress:php8.0
-
name: Build and push php8.1
id: docker_build_php8_1
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
file: ./php8.1/Dockerfile
tags: outlandish/wordpress:php8.1
-
name: Build and push php8.2
id: docker_build_php8_2
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
file: ./php8.2/Dockerfile
Expand Down