Skip to content

Commit 4606d5c

Browse files
feat: v2 (#82)
Co-authored-by: crowlkats <[email protected]>
1 parent 5e01c01 commit 4606d5c

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

action.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ branding:
77
inputs:
88
deno-version:
99
description: The Deno version to install. Can be a semver version of a stable release, "canary" for the latest canary, or the Git hash of a specific canary release.
10-
default: "1.x"
10+
default: "2.x"
1111
deno-version-file:
1212
description: File containing the Deno version to install such as .dvmrc or .tool-versions.
1313
deno-binary-name:
@@ -16,8 +16,6 @@ inputs:
1616
outputs:
1717
deno-version:
1818
description: "The Deno version that was installed."
19-
is-canary:
20-
description: "If the installed Deno version was a canary version."
2119
release-channel:
2220
description: "The release channel of the installed version."
2321
runs:

main.mjs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ async function main() {
3939
await install(version);
4040

4141
core.setOutput("deno-version", version.version);
42-
// TODO(@crowlKats): remove in 2.0
43-
core.setOutput("is-canary", version.kind === "canary");
4442
core.setOutput("release-channel", version.kind);
4543

4644
core.info("Installation complete.");

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "setup-deno",
33
"description": "Set up Deno easially in GitHub Actions",
4-
"version": "1.5.1",
4+
"version": "2.0.0",
55
"author": "Deno Land Inc",
66
"license": "MIT",
77
"type": "module",

0 commit comments

Comments
 (0)