@@ -119,11 +119,11 @@ jobs:
119
119
username : ${{ secrets.QUAY_USERNAME }}
120
120
password : ${{ secrets.QUAY_ROBOT_TOKEN }}
121
121
- name : Build and push
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
122
+ uses : docker/build-push-action@v5
124
123
with :
125
124
context : .
126
125
platforms : linux/amd64, linux/arm64, linux/ppc64le, linux/s390x
126
+ provenance : false
127
127
push : ${{ github.event_name != 'pull_request' }}
128
128
tags : ${{ steps.meta.outputs.tags }}
129
129
labels : ${{ steps.meta.outputs.labels }}
@@ -145,11 +145,11 @@ jobs:
145
145
- name : Build and push single-arch amd64 image
146
146
if : github.event_name != 'pull_request'
147
147
# if: startsWith(github.ref, 'refs/tags/v')
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
148
+ uses : docker/build-push-action@v5
150
149
with :
151
150
context : .
152
151
platforms : linux/amd64
152
+ provenance : false
153
153
push : ${{ github.event_name != 'pull_request' }}
154
154
tags : ${{ steps.single-arch-meta-amd64.outputs.tags }}
155
155
labels : ${{ steps.single-arch-meta-amd64.outputs.labels }}
@@ -171,11 +171,11 @@ jobs:
171
171
- name : Build and push single-arch arm64 image
172
172
if : github.event_name != 'pull_request'
173
173
# if: startsWith(github.ref, 'refs/tags/v')
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
174
+ uses : docker/build-push-action@v5
176
175
with :
177
176
context : .
178
177
platforms : linux/arm64
178
+ provenance : false
179
179
push : ${{ github.event_name != 'pull_request' }}
180
180
tags : ${{ steps.single-arch-meta-arm64.outputs.tags }}
181
181
labels : ${{ steps.single-arch-meta-arm64.outputs.labels }}
0 commit comments