You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 15, 2025. It is now read-only.
- Handles restoring and caching to `DENO_DIR` for you.
11
11
- Annotates your source code from `deno lint --compact` output.\
@@ -17,15 +17,15 @@
17
17
#### Basic:
18
18
19
19
```yaml
20
-
- uses: nekowinston/setup-deno@v1
20
+
- uses: nekowinston/setup-deno@v2
21
21
```
22
22
23
23
#### All options:
24
24
25
25
```yaml
26
-
- uses: nekowinston/setup-deno@v1
26
+
- uses: nekowinston/setup-deno@v2
27
27
with:
28
-
deno-version: "~1.38"
28
+
deno-version: "~2.2"
29
29
deno-json-path: ./subdirectory/deno.json
30
30
deno-lock-path: ./subdirectory/deno.lock
31
31
directory: ./subdirectory
@@ -35,7 +35,7 @@
35
35
- `deno-version`:\
36
36
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.\
37
37
See [`setup-deno`](https://github.com/marketplace/actions/setup-deno) for examples.\
38
-
Defaults to `1.x`.
38
+
Defaults to `2.x`.
39
39
- `deno-json-path`:\
40
40
The path to the Deno config file to use for caching.\
41
41
Defaults to an empty string, using the built-in CLI default.
Copy file name to clipboardExpand all lines: action.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ branding:
7
7
inputs:
8
8
deno-version:
9
9
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"
11
11
deno-json-path:
12
12
description: "The path to the Deno config file to use for caching. Defaults to an empty string, using the built-in CLI default (`deno.json` and `deno.jsonc`)."
0 commit comments