Skip to content

Commit d4fbd00

Browse files
Bump docker/build-push-action from 6.1.0 to 6.2.0 in the actions group (#5871)
Bumps the actions group with 1 update: [docker/build-push-action](https://github.com/docker/build-push-action). Updates `docker/build-push-action` from 6.1.0 to 6.2.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@31159d4...1556069) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 21e29e5 commit d4fbd00

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/build-base-images.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
type=raw,value=${{ needs.checks.outputs.docker_md5 }},enable=${{ needs.checks.outputs.docker_md5 != '' }}
9393
9494
- name: Build Base Container
95-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
95+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
9696
with:
9797
file: build/Dockerfile
9898
context: "."
@@ -157,7 +157,7 @@ jobs:
157157
type=raw,value=${{ needs.checks.outputs.docker_md5 }},enable=${{ needs.checks.outputs.docker_md5 != '' }}
158158
159159
- name: Build Base Container
160-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
160+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
161161
with:
162162
file: build/Dockerfile
163163
context: "."
@@ -227,7 +227,7 @@ jobs:
227227
type=raw,value=${{ needs.checks.outputs.docker_md5 }},enable=${{ needs.checks.outputs.docker_md5 != '' }}
228228
229229
- name: Build Base Container
230-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
230+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
231231
with:
232232
file: build/Dockerfile
233233
context: "."

.github/workflows/build-oss.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
if: ${{ steps.images_exist.outputs.base_exists != 'true' || steps.images_exist.outputs.target_exists != 'true' }}
120120

121121
- name: Build Base Container
122-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
122+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
123123
with:
124124
file: build/Dockerfile
125125
context: "."
@@ -151,7 +151,7 @@ jobs:
151151
if: ${{ steps.images_exist.outputs.base_exists != 'true' || steps.images_exist.outputs.target_exists != 'true' }}
152152

153153
- name: Build Docker image
154-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
154+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
155155
id: build-push
156156
with:
157157
file: build/Dockerfile

.github/workflows/build-plus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
if: ${{ steps.images_exist.outputs.base_exists != 'true' || steps.images_exist.outputs.target_exists != 'true' }}
125125

126126
- name: Build Base Container
127-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
127+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
128128
with:
129129
file: build/Dockerfile
130130
context: "."
@@ -161,7 +161,7 @@ jobs:
161161
if: ${{ steps.images_exist.outputs.base_exists != 'true' || steps.images_exist.outputs.target_exists != 'true' }}
162162

163163
- name: Build Docker image
164-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
164+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
165165
id: build-push
166166
with:
167167
file: build/Dockerfile

.github/workflows/build-test-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
password: ${{ steps.auth.outputs.access_token }}
5050

5151
- name: Build Test-Runner Container
52-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
52+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
5353
with:
5454
file: tests/Dockerfile
5555
context: "."

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ jobs:
438438
if: ${{ needs.checks.outputs.forked_workflow == 'true' && needs.checks.outputs.docs_only == 'false' }}
439439

440440
- name: Build Docker Image ${{ matrix.base-os }}
441-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
441+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
442442
with:
443443
file: build/Dockerfile
444444
context: "."
@@ -556,7 +556,7 @@ jobs:
556556
if: ${{ needs.checks.outputs.forked_workflow == 'false' && needs.checks.outputs.docs_only == 'false' }}
557557

558558
- name: Build Test-Runner Container
559-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
559+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
560560
with:
561561
file: tests/Dockerfile
562562
context: "."

.github/workflows/patch-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
password: ${{ steps.auth.outputs.access_token }}
7171

7272
- name: Apply OS patches to Container
73-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
73+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
7474
with:
7575
file: build/Dockerfile
7676
context: "."

.github/workflows/setup-smoke.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
if: ${{ inputs.authenticated }}
113113

114114
- name: Build Test-Runner Container
115-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
115+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
116116
with:
117117
file: tests/Dockerfile
118118
context: "."
@@ -124,7 +124,7 @@ jobs:
124124
if: ${{ ( !inputs.authenticated || steps.check-image.outcome == 'failure' ) }}
125125

126126
- name: Build ${{ inputs.image }} Container
127-
uses: docker/build-push-action@31159d49c0d4756269a0940a750801a1ea5d7003 # v6.1.0
127+
uses: docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2.0
128128
with:
129129
file: build/Dockerfile
130130
context: "."

0 commit comments

Comments
 (0)