chore: note about targeting the latest version (#12)
This commit is contained in:
parent
004814556e
commit
877e3e0632
12
README.md
12
README.md
|
@ -4,7 +4,7 @@ Set up your GitHub Actions workflow with a specific version of Deno.
|
|||
|
||||
## Usage
|
||||
|
||||
### Latest stable
|
||||
### Latest stable for a major
|
||||
|
||||
```yaml
|
||||
- uses: denoland/setup-deno@v1
|
||||
|
@ -12,6 +12,16 @@ Set up your GitHub Actions workflow with a specific version of Deno.
|
|||
deno-version: v1.x
|
||||
```
|
||||
|
||||
### Latest stable for any major
|
||||
|
||||
Targets the latest major, minor and patch version of Deno.
|
||||
|
||||
```yaml
|
||||
- uses: denoland/setup-deno@v1
|
||||
with:
|
||||
deno-version: vx.x.x
|
||||
```
|
||||
|
||||
### Specific stable
|
||||
|
||||
```yaml
|
||||
|
|
Loading…
Reference in New Issue