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 4 to 5 #106

Merged
merged 3 commits into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .github/workflows/e2e-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
type=semver,pattern={{version}}-e2e
type=semver,pattern={{major}}.{{minor}}-e2e
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: tests/e2e/initialization/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/init-e2e-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
type=semver,pattern={{version}}-e2e-init-chain
type=semver,pattern={{major}}.{{minor}}-e2e-init-chain
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: tests/e2e/initialization/init.Dockerfile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
-
name: Build and push
id: build_push_image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: Dockerfile
context: .
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
-
name: Build and push
id: build_push_e2e_image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: tests/e2e/initialization/Dockerfile
context: .
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
-
name: Build and push
id: build_push_e2e_init_image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: tests/e2e/initialization/init.Dockerfile
context: .
Expand Down
Loading