Skip to content

Commit a9c9ea1

Browse files
committed
Set fixed buildx version to mitigate issues with buildx version 0.31.1
Signed-off-by: yubiuser <[email protected]>
1 parent 3e26014 commit a9c9ea1

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/ftl-build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ jobs:
103103
-
104104
name: Set up Docker Buildx
105105
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f #v3.12.0
106+
with:
107+
# Buildx version 0.31.1 broke our publish workflow, this need to be revised when 0.32.0 is released
108+
# https://github.com/docker/buildx/releases/tag/v0.31.1
109+
version: v0.31.0
106110
-
107111
name: Build container and test-compile FTL
108112
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 #v6.19.2
@@ -166,7 +170,11 @@ jobs:
166170
merge-multiple: true
167171
-
168172
name: Set up Docker Buildx
169-
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 #v3.7.0
173+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f #v3.12.0
174+
with:
175+
# Buildx version 0.31.1 broke our publish workflow, this need to be revised when 0.32.0 is released
176+
# https://github.com/docker/buildx/releases/tag/v0.31.1
177+
version: v0.31.0
170178
-
171179
name: Login to Docker Hub
172180
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 #v3.7.0

0 commit comments

Comments
 (0)