Skip to content

Commit

Permalink
feat: v2 (#82)
Browse files Browse the repository at this point in the history
Co-authored-by: crowlkats <crowlkats@toaxl.com>
  • Loading branch information
lucacasonato and crowlKats authored Oct 9, 2024
1 parent 5e01c01 commit 4606d5c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ branding:
inputs:
deno-version:
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.
default: "1.x"
default: "2.x"
deno-version-file:
description: File containing the Deno version to install such as .dvmrc or .tool-versions.
deno-binary-name:
Expand All @@ -16,8 +16,6 @@ inputs:
outputs:
deno-version:
description: "The Deno version that was installed."
is-canary:
description: "If the installed Deno version was a canary version."
release-channel:
description: "The release channel of the installed version."
runs:
Expand Down
2 changes: 0 additions & 2 deletions main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ async function main() {
await install(version);

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

core.info("Installation complete.");
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "setup-deno",
"description": "Set up Deno easially in GitHub Actions",
"version": "1.5.1",
"version": "2.0.0",
"author": "Deno Land Inc",
"license": "MIT",
"type": "module",
Expand Down

0 comments on commit 4606d5c

Please sign in to comment.