Skip to content

Commit dc68f28

Browse files
authored
Merge pull request #28 from aluzzardi/version-default-0.1
version: default to 0.1
2 parents f83409d + 40f529c commit dc68f28

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Following inputs can be used as `step.with` keys
6969

7070
| Name | Type | Default | Description |
7171
|------------------|---------|--------------|------------------------------------------------------------------|
72-
| `version` | String | `latest` | Dagger version |
72+
| `version` | String | `0.1` | Dagger version |
7373
| `age-key` | String | | Dagger private key |
7474
| `args` | String | | Arguments to pass to Dagger |
7575
| `workdir` | String | `.` | Working directory (below repository root) |

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ branding:
88
inputs:
99
version:
1010
description: 'Dagger version'
11-
default: 'latest'
11+
default: '0.1'
1212
required: false
1313
age-key:
1414
description: 'Dagger private key'

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export interface Inputs {
1111

1212
export async function getInputs(): Promise<Inputs> {
1313
return {
14-
version: core.getInput('version') || 'latest',
14+
version: core.getInput('version') || '0.1',
1515
ageKey: core.getInput('age-key'),
1616
workdir: core.getInput('workdir') || '.',
1717
args: core.getInput('args'),

0 commit comments

Comments
 (0)