set docker.io domain for default binfmt image

Signed-off-by: CrazyMax <[email protected]>
This commit is contained in:
CrazyMax
2024-07-03 11:22:09 +02:00
parent b12b38b5fe
commit af38981e30
4 changed files with 18 additions and 4 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ export interface Inputs {
export function getInputs(): Inputs {
return {
image: core.getInput('image') || 'tonistiigi/binfmt:latest',
image: core.getInput('image') || 'docker.io/tonistiigi/binfmt:latest',
platforms: Util.getInputList('platforms').join(',') || 'all'
};
}