Change Dockerfile to upgrade packages when building (#26929)

Co-authored-by: Renaud Chaput <renchap@gmail.com>
This commit is contained in:
Claire
2023-09-18 08:32:04 +02:00
committed by GitHub
parent 7f7e068975
commit 38a5d92f38
3 changed files with 8 additions and 2 deletions

View File

@@ -4,6 +4,9 @@ on:
platforms:
required: true
type: string
cache:
type: boolean
default: true
use_native_arm64_builder:
type: boolean
push_to_images:
@@ -85,5 +88,5 @@ jobs:
push: ${{ inputs.push_to_images != '' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
cache-from: ${{ inputs.cache && 'type=gha' || '' }}
cache-to: ${{ inputs.cache && 'type=gha,mode=max' || '' }}