chore(deps): bump docker/build-push-action from 5 to 6 (#10451)
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](https://github.com/docker/build-push-action/compare/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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] committed
Aug 21, 2024 at 16:07 UTC
afe3ae0dac1dcc6f902e0baae3dbb997ebfc372c
1 file changed
+4
-4
.github/workflows/docker-image.yml
+4
-4
@@ -72,7 +72,7 @@ jobs:
72
# builds, only one platform is being loaded into the cache. This would
73
# prevent us from testing the other platforms.
74
- name: Build Docker image (linux/amd64)
75
- uses: docker/build-push-action@v5
75
+ uses: docker/build-push-action@v6
76
with:
77
platforms: linux/amd64
78
context: .
@@ -84,7 +84,7 @@ jobs:
84
cache-to: type=local,dest=/tmp/.buildx-cache-new
85
86
- name: Build Docker image (linux/arm/v7)
87
- uses: docker/build-push-action@v5
87
+ uses: docker/build-push-action@v6
88
with:
89
platforms: linux/arm/v7
90
context: .
@@ -96,7 +96,7 @@ jobs:
96
cache-to: type=local,dest=/tmp/.buildx-cache-new
97
98
- name: Build Docker image (linux/arm64/v8)
99
- uses: docker/build-push-action@v5
99
+ uses: docker/build-push-action@v6
100
with:
101
platforms: linux/arm64/v8
102
context: .
@@ -116,7 +116,7 @@ jobs:
116
# This will only push the previously built images.
117
- if: github.event_name != 'workflow_dispatch' || github.event.inputs.push == 'true'
118
name: Publish to Docker Hub
119
- uses: docker/build-push-action@v5
119
+ uses: docker/build-push-action@v6
120
with:
121
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
122
context: .