mirror of
https://github.com/docker/setup-buildx-action.git
synced 2026-03-20 20:50:20 +08:00
remove deprecated inputs/outputs
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
parent
9cd4410b76
commit
b4664d8fd0
7 changed files with 4 additions and 119 deletions
|
|
@ -19,7 +19,6 @@ export interface Inputs {
|
|||
buildkitdConfig: string;
|
||||
buildkitdConfigInline: string;
|
||||
platforms: string[];
|
||||
install: boolean;
|
||||
use: boolean;
|
||||
endpoint: string;
|
||||
append: string;
|
||||
|
|
@ -36,11 +35,10 @@ export async function getInputs(): Promise<Inputs> {
|
|||
driverOpts: Util.getInputList('driver-opts', {ignoreComma: true, quote: false}),
|
||||
buildkitdFlags: core.getInput('buildkitd-flags'),
|
||||
platforms: Util.getInputList('platforms'),
|
||||
install: core.getBooleanInput('install'),
|
||||
use: core.getBooleanInput('use'),
|
||||
endpoint: core.getInput('endpoint'),
|
||||
buildkitdConfig: core.getInput('buildkitd-config') || core.getInput('config'),
|
||||
buildkitdConfigInline: core.getInput('buildkitd-config-inline') || core.getInput('config-inline'),
|
||||
buildkitdConfig: core.getInput('buildkitd-config'),
|
||||
buildkitdConfigInline: core.getInput('buildkitd-config-inline'),
|
||||
append: core.getInput('append'),
|
||||
keepState: core.getBooleanInput('keep-state'),
|
||||
cacheBinary: core.getBooleanInput('cache-binary'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue