@@ -94,12 +94,12 @@ jobs:
94
94
username : ${{ secrets.DOCKERHUB_USERNAME }}
95
95
password : ${{ secrets.DOCKERHUB_TOKEN }}
96
96
- name : Build and push
97
- # Do not bump below action version (Known issue - https://github.com/docker/build-push-action/issues/820)
98
- uses : docker/build-push-action@v3
97
+ uses : docker/build-push-action@v5
99
98
with :
100
99
context : .
101
100
push : true
102
101
platforms : linux/amd64, linux/arm64
102
+ provenance : false
103
103
tags : ${{ steps.meta.outputs.tags }}
104
104
labels : ${{ steps.meta.outputs.labels }}
105
105
- name : OCI Metadata for single-arch amd64 image
@@ -114,11 +114,11 @@ jobs:
114
114
type=semver,pattern={{version}},suffix=-amd64,latest=false
115
115
type=sha,suffix=-amd64,latest=false
116
116
- name : Build and push single-arch amd64 image
117
- # Do not bump below action version (Known issue - https://github.com/docker/build-push-action/issues/820)
118
- uses : docker/build-push-action@v3
117
+ uses : docker/build-push-action@v5
119
118
with :
120
119
context : .
121
120
platforms : linux/amd64
121
+ provenance : false
122
122
push : ${{ github.event_name != 'pull_request' }}
123
123
tags : ${{ steps.single-arch-meta-amd64.outputs.tags }}
124
124
labels : ${{ steps.single-arch-meta-amd64.outputs.labels }}
@@ -134,11 +134,11 @@ jobs:
134
134
type=semver,pattern={{version}},suffix=-arm64,latest=false
135
135
type=sha,suffix=-arm64,latest=false
136
136
- name : Build and push single-arch arm64 image
137
- # Do not bump below action version (Known issue - https://github.com/docker/build-push-action/issues/820)
138
- uses : docker/build-push-action@v3
137
+ uses : docker/build-push-action@v5
139
138
with :
140
139
context : .
141
140
platforms : linux/arm64
141
+ provenance : false
142
142
push : ${{ github.event_name != 'pull_request' }}
143
143
tags : ${{ steps.single-arch-meta-arm64.outputs.tags }}
144
144
labels : ${{ steps.single-arch-meta-arm64.outputs.labels }}
0 commit comments