@@ -167,7 +167,7 @@ jobs:
167
167
168
168
docker :
169
169
name : Docker image for ${{ matrix.platform }} 💿🐳
170
- runs-on : ubuntu-latest
170
+ runs-on : ${{ contains(matrix.platform, 'arm') && ' ubuntu-24.04-arm' || 'ubuntu- latest' }}
171
171
needs : docker_inputs
172
172
strategy :
173
173
fail-fast : false
@@ -189,6 +189,9 @@ jobs:
189
189
190
190
- name : Configure Docker Buildx ⚙️
191
191
uses : docker/setup-buildx-action@v3.8.0
192
+ with :
193
+ cleanup : false
194
+ version : latest
192
195
193
196
- name : Build images 🛠️
194
197
uses : docker/build-push-action@v6.13.0
@@ -197,11 +200,9 @@ jobs:
197
200
context : .
198
201
file : packaging/docker/Dockerfile
199
202
platforms : ${{ format('linux/{0}', matrix.platform) }}
200
- cache-from : |
201
- type=gha,scope=buildx-${{ matrix.platform }}
203
+ no-cache : true
202
204
cache-to : |
203
205
type=local,mode=min,dest=/tmp/${{ env.REGISTRY_IMAGE }}/cache/${{ matrix.platform }}
204
- type=gha,mode=min,ignore-error=true,scope=buildx-${{ matrix.platform }}
205
206
outputs : type=docker,dest=docker_image.tar
206
207
build-args : |
207
208
${{ inputs.commit == '' && 'IS_STABLE=1' || '' }}
@@ -295,6 +296,9 @@ jobs:
295
296
296
297
- name : Configure Docker Buildx ⚙️
297
298
uses : docker/setup-buildx-action@v3.8.0
299
+ with :
300
+ cleanup : false
301
+ version : latest
298
302
299
303
- name : Login to Docker Hub 🔑
300
304
uses : docker/login-action@v3.3.0
0 commit comments