*: allow users to pass in a buildx version

This commit is contained in:
Claude 2025-05-30 12:31:51 -04:00
commit 28c244705c
4 changed files with 23 additions and 3 deletions

View file

@ -59,6 +59,7 @@ export interface Inputs {
'github-token': string;
nofallback: boolean;
setupOnly: boolean;
'buildx-version': string;
}
export async function getInputs(): Promise<Inputs> {
@ -98,6 +99,7 @@ export async function getInputs(): Promise<Inputs> {
'github-token': core.getInput('github-token'),
nofallback: core.getBooleanInput('nofallback'),
setupOnly: core.getBooleanInput('setup-only'),
'buildx-version': core.getInput('buildx-version')
};
}