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 6.6.1 to 6.7.0 #69

Merged
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/build_and_push_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ jobs:
# Cache build of image & get image version from build output
- name: Cache build of image
id: cache_build
uses: docker/build-push-action@v6.6.1
uses: docker/build-push-action@v6.7.0
with:
context: ${{ needs.workflows_env.outputs.docker_build_context }}
file: ${{ needs.workflows_env.outputs.docker_build_file }}.use
Expand Down Expand Up @@ -808,7 +808,7 @@ jobs:
# Push final image
- name: Build & Push Final Image
id: final_build
uses: docker/build-push-action@v6.6.1
uses: docker/build-push-action@v6.7.0
with:
context: ${{ needs.workflows_env.outputs.docker_build_context }}
file: ${{ needs.workflows_env.outputs.docker_build_file }}.use
Expand Down Expand Up @@ -899,7 +899,7 @@ jobs:
# Cache build of linux/amd64 image & get image version from build output
- name: Cache build of image
id: cache_build
uses: docker/build-push-action@v6.6.1
uses: docker/build-push-action@v6.7.0
with:
context: ${{ needs.workflows_env.outputs.docker_build_context }}
file: ${{ needs.workflows_env.outputs.docker_build_file }}.use
Expand Down Expand Up @@ -992,7 +992,7 @@ jobs:
# Build & push final images
- name: Build & Push Final Image
id: final_build
uses: docker/build-push-action@v6.6.1
uses: docker/build-push-action@v6.7.0
with:
context: ${{ needs.workflows_env.outputs.docker_build_context }}
file: ${{ needs.workflows_env.outputs.docker_build_file }}.use
Expand Down Expand Up @@ -1107,7 +1107,7 @@ jobs:
- name: Cache build of image
if: needs.workflows_env.outputs.build_nohealthcheck == 'true'
id: cache_build
uses: docker/build-push-action@v6.6.1
uses: docker/build-push-action@v6.7.0
with:
context: ${{ needs.workflows_env.outputs.docker_build_context }}
file: ${{ needs.workflows_env.outputs.docker_build_file }}.nohealthcheck
Expand Down Expand Up @@ -1194,7 +1194,7 @@ jobs:
- name: Build & Push Final Image
if: needs.workflows_env.outputs.build_nohealthcheck == 'true'
id: final_build
uses: docker/build-push-action@v6.6.1
uses: docker/build-push-action@v6.7.0
with:
context: ${{ needs.workflows_env.outputs.docker_build_context }}
file: ${{ needs.workflows_env.outputs.docker_build_file }}.nohealthcheck
Expand Down Expand Up @@ -1301,7 +1301,7 @@ jobs:
- name: Cache build of image
if: needs.workflows_env.outputs.build_nohealthcheck == 'true'
id: cache_build
uses: docker/build-push-action@v6.6.1
uses: docker/build-push-action@v6.7.0
with:
context: ${{ needs.workflows_env.outputs.docker_build_context }}
file: ${{ needs.workflows_env.outputs.docker_build_file }}.nohealthcheck
Expand Down Expand Up @@ -1388,7 +1388,7 @@ jobs:
- name: Build & Push Final Image
if: needs.workflows_env.outputs.build_nohealthcheck == 'true'
id: final_build
uses: docker/build-push-action@v6.6.1
uses: docker/build-push-action@v6.7.0
with:
context: ${{ needs.workflows_env.outputs.docker_build_context }}
file: ${{ needs.workflows_env.outputs.docker_build_file }}.nohealthcheck
Expand Down
Loading