chore(deps): bump docker/build-push-action from 6 to 7 (#11231)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6 to 7. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6...v7) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] committed
Mar 13, 2026 at 04:36 UTC
c885b79cb51002bee132351445eb6cc07eedbcf5
2 files changed
+5
-5
.github/workflows/docker-check.yml
+1
-1
@@ -47,7 +47,7 @@ jobs:
47
uses: docker/setup-buildx-action@v3
48
49
- name: Build Docker image with BuildKit
50
- uses: docker/build-push-action@v6
50
+ uses: docker/build-push-action@v7
51
with:
52
context: .
53
push: false
.github/workflows/docker-image.yml
+4
-4
@@ -70,7 +70,7 @@ jobs:
70
# builds, only one platform is being loaded into the cache. This would
71
# prevent us from testing the other platforms.
72
- name: Build Docker image (linux/amd64)
73
- uses: docker/build-push-action@v6
73
+ uses: docker/build-push-action@v7
74
with:
75
platforms: linux/amd64
76
context: .
@@ -84,7 +84,7 @@ jobs:
84
cache-to: type=gha,mode=max
85
86
- name: Build Docker image (linux/arm/v7)
87
- uses: docker/build-push-action@v6
87
+ uses: docker/build-push-action@v7
88
with:
89
platforms: linux/arm/v7
90
context: .
@@ -98,7 +98,7 @@ jobs:
98
cache-to: type=gha,mode=max
99
100
- name: Build Docker image (linux/arm64/v8)
101
- uses: docker/build-push-action@v6
101
+ uses: docker/build-push-action@v7
102
with:
103
platforms: linux/arm64/v8
104
context: .
@@ -128,7 +128,7 @@ jobs:
128
# This will only push the previously built images.
129
- if: github.event_name != 'workflow_dispatch' || github.event.inputs.push == 'true'
130
name: Publish to Docker Hub
131
- uses: docker/build-push-action@v6
131
+ uses: docker/build-push-action@v7
132
with:
133
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
134
context: .