diff --git a/README.md b/README.md index 4753d31..a5cb5b3 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Following inputs can be used as `step.with` keys | Name | Type | Default | Description | |------------------|---------|--------------|------------------------------------------------------------------| -| `version` | String | `0.1` | Dagger version | +| `version` | String | `latest` | Dagger version | | `age-key` | String | | Dagger private key | | `args` | String | | Arguments to pass to Dagger | | `workdir` | String | `.` | Working directory (below repository root) | diff --git a/action.yml b/action.yml index 104636e..dfde8bd 100644 --- a/action.yml +++ b/action.yml @@ -8,7 +8,7 @@ branding: inputs: version: description: 'Dagger version' - default: '0.1' + default: 'latest' required: false age-key: description: 'Dagger private key' diff --git a/dist/index.js b/dist/index.js index eabee42..d0cf58d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -41,7 +41,7 @@ const core = __importStar(__webpack_require__(186)); function getInputs() { return __awaiter(this, void 0, void 0, function* () { return { - version: core.getInput('version') || '0.1', + version: core.getInput('version') || 'latest', ageKey: core.getInput('age-key'), workdir: core.getInput('workdir') || '.', args: core.getInput('args'), diff --git a/src/context.ts b/src/context.ts index 07c1963..14cfc09 100644 --- a/src/context.ts +++ b/src/context.ts @@ -11,7 +11,7 @@ export interface Inputs { export async function getInputs(): Promise { return { - version: core.getInput('version') || '0.1', + version: core.getInput('version') || 'latest', ageKey: core.getInput('age-key'), workdir: core.getInput('workdir') || '.', args: core.getInput('args'),