Skip to content

Commit 35d5293

Browse files
authoredJan 22, 2024
Merge pull request #1539 from rabbitmq/fix-build-push-action
Reverting docker/build-push-action version
2 parents c331d54 + 79c03c2 commit 35d5293

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
username: ${{ secrets.QUAY_USERNAME }}
104104
password: ${{ secrets.QUAY_ROBOT_TOKEN }}
105105
- name: Build and push
106-
uses: docker/build-push-action@v5
106+
uses: docker/build-push-action@v3
107107
with:
108108
context: .
109109
platforms: linux/amd64, linux/arm64, linux/ppc64le, linux/s390x
@@ -128,7 +128,7 @@ jobs:
128128
- name: Build and push single-arch amd64 image
129129
if: github.event_name != 'pull_request'
130130
#if: startsWith(github.ref, 'refs/tags/v')
131-
uses: docker/build-push-action@v5
131+
uses: docker/build-push-action@v3
132132
with:
133133
context: .
134134
platforms: linux/amd64
@@ -153,7 +153,7 @@ jobs:
153153
- name: Build and push single-arch arm64 image
154154
if: github.event_name != 'pull_request'
155155
#if: startsWith(github.ref, 'refs/tags/v')
156-
uses: docker/build-push-action@v5
156+
uses: docker/build-push-action@v3
157157
with:
158158
context: .
159159
platforms: linux/arm64

0 commit comments

Comments
 (0)
Please sign in to comment.