Skip to content

Commit 71dddea

Browse files
authored
Revert docker/build-push-action version due to known issue (#1631)
* Revert docker/build-push-action version due to known issue Version 5 of docker/build-push-action produces `unknown` architecture and os in manifest * Comment added to prevent future bumps of docker/build-push-action
1 parent 29abb63 commit 71dddea

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build-test-publish.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ jobs:
119119
username: ${{ secrets.QUAY_USERNAME }}
120120
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
121121
- name: Build and push
122-
uses: docker/build-push-action@v5
122+
# Do not bump below action version (Known issue - https://github.com/docker/build-push-action/issues/820)
123+
uses: docker/build-push-action@v3
123124
with:
124125
context: .
125126
platforms: linux/amd64, linux/arm64, linux/ppc64le, linux/s390x
@@ -144,7 +145,8 @@ jobs:
144145
- name: Build and push single-arch amd64 image
145146
if: github.event_name != 'pull_request'
146147
#if: startsWith(github.ref, 'refs/tags/v')
147-
uses: docker/build-push-action@v5
148+
# Do not bump below action version (Known issue - https://github.com/docker/build-push-action/issues/820)
149+
uses: docker/build-push-action@v3
148150
with:
149151
context: .
150152
platforms: linux/amd64
@@ -169,7 +171,8 @@ jobs:
169171
- name: Build and push single-arch arm64 image
170172
if: github.event_name != 'pull_request'
171173
#if: startsWith(github.ref, 'refs/tags/v')
172-
uses: docker/build-push-action@v5
174+
# Do not bump below action version (Known issue - https://github.com/docker/build-push-action/issues/820)
175+
uses: docker/build-push-action@v3
173176
with:
174177
context: .
175178
platforms: linux/arm64

0 commit comments

Comments
 (0)