Skip to content

Commit 48eed1b

Browse files
Bump docker/build-push-action from 5.2.0 to 5.3.0 (#1693)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5.2.0 to 5.3.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@af5a7ed...2cdde99) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 628d4e4 commit 48eed1b

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index
113113

114114
- name: Build Docker Image
115-
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2.0
115+
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
116116
with:
117117
file: build/Dockerfile${{ inputs.image == 'nginx' && '.nginx' || '' }}${{ inputs.image == 'plus' && '.nginxplus' || '' }}
118118
context: "."

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ jobs:
202202
type=ref,event=branch,suffix=-rc,enable=${{ startsWith(github.ref, 'refs/heads/release') }}
203203
204204
- name: Build NGF Docker Image
205-
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2.0
205+
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
206206
with:
207207
file: build/Dockerfile
208208
tags: ${{ steps.ngf-meta.outputs.tags }}
@@ -214,7 +214,7 @@ jobs:
214214
pull: true
215215

216216
- name: Build NGINX Docker Image
217-
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2.0
217+
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
218218
with:
219219
file: build/Dockerfile.nginx
220220
tags: ${{ steps.nginx-meta.outputs.tags }}

.github/workflows/conformance.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
TELEMETRY_ENDPOINT_INSECURE: "false"
9090

9191
- name: Build NGF Docker Image
92-
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2.0
92+
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
9393
with:
9494
file: build/Dockerfile
9595
tags: ${{ steps.ngf-meta.outputs.tags }}
@@ -101,7 +101,7 @@ jobs:
101101
pull: true
102102

103103
- name: Build NGINX Docker Image
104-
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2.0
104+
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
105105
with:
106106
file: build/Dockerfile${{ matrix.nginx-image == 'nginx' && '.nginx' || '' }}${{ matrix.nginx-image == 'nginx-plus' && '.nginxplus' || ''}}
107107
tags: ${{ steps.nginx-meta.outputs.tags }}
@@ -121,7 +121,7 @@ jobs:
121121
working-directory: ./conformance
122122

123123
- name: Build Test Docker Image
124-
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2.0
124+
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
125125
with:
126126
file: conformance/tests/Dockerfile
127127
tags: conformance-test-runner:${{ github.sha }}

.github/workflows/functional.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
TELEMETRY_ENDPOINT_INSECURE: "true"
7979

8080
- name: Build NGF Docker Image
81-
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2.0
81+
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
8282
with:
8383
file: build/Dockerfile
8484
tags: ${{ steps.ngf-meta.outputs.tags }}
@@ -90,7 +90,7 @@ jobs:
9090
target: goreleaser
9191

9292
- name: Build NGINX Docker Image
93-
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2.0
93+
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
9494
with:
9595
file: build/Dockerfile${{ matrix.nginx-image == 'nginx' && '.nginx' || '' }}${{ matrix.nginx-image == 'nginx-plus' && '.nginxplus' || ''}}
9696
tags: ${{ steps.nginx-meta.outputs.tags }}

.github/workflows/nfr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989

9090
- name: Build NGINX Plus Docker Image
9191
if: ${{ inputs.nginx_plus == true }}
92-
uses: docker/build-push-action@af5a7ed5ba88268d5278f7203fb52cd833f66d6e # v5.2.0
92+
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
9393
with:
9494
file: build/Dockerfile.nginxplus
9595
tags: ${{ steps.nginx-meta.outputs.tags }}

0 commit comments

Comments
 (0)