Skip to content

Commit bd3364b

Browse files
chore(deps): bump docker/build-push-action from 5 to 6 (ietf-tools#7547)
* chore(deps): bump docker/build-push-action from 5 to 6 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * fix: disable docker build summary --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicolas Giard <github@ngpixel.com>
1 parent 7a18633 commit bd3364b

5 files changed

Lines changed: 15 additions & 5 deletions

File tree

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
password: ${{ secrets.GITHUB_TOKEN }}
3535

3636
- name: Docker Build & Push
37-
uses: docker/build-push-action@v5
37+
uses: docker/build-push-action@v6
38+
env:
39+
DOCKER_BUILD_NO_SUMMARY: true
3840
with:
3941
context: .
4042
file: docker/base.Dockerfile

.github/workflows/build-celery-worker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
password: ${{ secrets.GITHUB_TOKEN }}
3636

3737
- name: Docker Build & Push
38-
uses: docker/build-push-action@v5
38+
uses: docker/build-push-action@v6
39+
env:
40+
DOCKER_BUILD_NO_SUMMARY: true
3941
with:
4042
context: .
4143
file: dev/celery/Dockerfile

.github/workflows/build-mq-broker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
password: ${{ secrets.GITHUB_TOKEN }}
3838

3939
- name: Docker Build & Push
40-
uses: docker/build-push-action@v5
40+
uses: docker/build-push-action@v6
41+
env:
42+
DOCKER_BUILD_NO_SUMMARY: true
4143
with:
4244
context: .
4345
file: dev/mq/Dockerfile

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,9 @@ jobs:
240240
password: ${{ secrets.GITHUB_TOKEN }}
241241

242242
- name: Build Release Docker Image
243-
uses: docker/build-push-action@v5
243+
uses: docker/build-push-action@v6
244+
env:
245+
DOCKER_BUILD_NO_SUMMARY: true
244246
with:
245247
context: .
246248
file: dev/build/Dockerfile

.github/workflows/dev-assets-sync-nightly.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
password: ${{ secrets.GITHUB_TOKEN }}
4040

4141
- name: Docker Build & Push
42-
uses: docker/build-push-action@v5
42+
uses: docker/build-push-action@v6
43+
env:
44+
DOCKER_BUILD_NO_SUMMARY: true
4345
with:
4446
context: .
4547
file: dev/shared-assets-sync/Dockerfile

0 commit comments

Comments
 (0)