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

build(deps): bump docker/build-push-action from 3.1.0 to 3.3.0 #167

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build-images-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:

- name: Release build ${{ matrix.name }}
if: ${{ steps.tag-in-repositories.outputs.exists == 'false' }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_release
with:
context: ${{ matrix.context }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-images-beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
persist-credentials: false

- name: Release Build ${{ matrix.name }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_release
with:
context: .
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/build-images-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:

# Import GitHub's cache build to docker cache
- name: Copy ${{ matrix.name }} Golang cache to docker cache
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
with:
context: /tmp/.cache/${{ matrix.name }}
file: ./images/cache/Dockerfile
Expand All @@ -115,7 +115,7 @@ jobs:
# master branch pushes
- name: CI Build ${{ matrix.name }}
if: ${{ github.event_name != 'pull_request_target' }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_ci_master
with:
context: .
Expand All @@ -133,7 +133,7 @@ jobs:

- name: CI race detection Build ${{ matrix.name }}
if: ${{ github.event_name != 'pull_request_target' }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_ci_master_detect_race_condition
with:
context: .
Expand All @@ -154,7 +154,7 @@ jobs:

- name: CI Unstripped Binaries Build ${{ matrix.name }}
if: ${{ github.event_name != 'pull_request_target' }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_ci_master_unstripped
with:
context: .
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
# PR updates
- name: CI Build ${{ matrix.name }}
if: ${{ github.event_name == 'pull_request_target' }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_ci_pr
with:
context: .
Expand All @@ -200,7 +200,7 @@ jobs:

- name: CI race detection Build ${{ matrix.name }}
if: ${{ github.event_name == 'pull_request_target' }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_ci_pr_detect_race_condition
with:
context: .
Expand All @@ -217,7 +217,7 @@ jobs:

- name: CI Unstripped Binaries Build ${{ matrix.name }}
if: ${{ github.event_name == 'pull_request_target' }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_ci_pr_unstripped
with:
context: .
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
# Store docker's golang's cache build locally only on the main branch
- name: Store ${{ matrix.name }} Golang cache build locally
if: ${{ github.event_name != 'pull_request_target' && steps.cache.outputs.cache-hit != 'true' }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
with:
context: .
file: ./images/cache/Dockerfile
Expand Down Expand Up @@ -325,7 +325,7 @@ jobs:

# Import GitHub's cache build to docker cache
- name: Copy ${{ matrix.name }} Golang cache to docker cache
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
with:
context: /tmp/.cache/${{ matrix.name }}
file: ./images/cache/Dockerfile
Expand All @@ -334,7 +334,7 @@ jobs:
target: import-cache

- name: CI Build ${{ matrix.name }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_ci_master
with:
context: .
Expand Down Expand Up @@ -366,7 +366,7 @@ jobs:
# Store docker's golang's cache build locally only on the main branch
- name: Store ${{ matrix.name }} Golang cache build locally
if: ${{ github.event_name != 'pull_request_target' && steps.cache.outputs.cache-hit != 'true' }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
with:
context: .
file: ./images/cache/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-images-hotfixes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
persist-credentials: false

- name: Release Build ${{ matrix.name }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_release
with:
context: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-images-releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
persist-credentials: false

- name: Release Build ${{ matrix.name }}
uses: docker/build-push-action@1cb9d22b932e4832bb29793b7777ec860fc1cde0
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
id: docker_build_release
with:
context: .
Expand Down