mirror of
https://github.com/docker/setup-docker-action.git
synced 2025-06-12 14:47:12 +02:00
fix version to latest
This commit is contained in:
@ -8,7 +8,7 @@ export interface Inputs {
|
||||
|
||||
export function getInputs(): Inputs {
|
||||
return {
|
||||
version: core.getInput('version'),
|
||||
version: core.getInput('version') || 'latest',
|
||||
channel: core.getInput('channel'),
|
||||
context: core.getInput('context')
|
||||
};
|
||||
|
@ -21,7 +21,7 @@ actionsToolkit.run(
|
||||
|
||||
const install = new Install({
|
||||
runDir: runDir,
|
||||
version: input.version || 'latest',
|
||||
version: input.version,
|
||||
channel: input.channel || 'stable',
|
||||
contextName: input.context || 'setup-docker-action'
|
||||
});
|
||||
|
Reference in New Issue
Block a user