chore: note about targeting the latest version (#12)

This commit is contained in:
Edward Bebbington
2021-07-15 15:17:39 +01:00
committed by GitHub
parent 004814556e
commit 877e3e0632

View File

@@ -4,7 +4,7 @@ Set up your GitHub Actions workflow with a specific version of Deno.
## Usage ## Usage
### Latest stable ### Latest stable for a major
```yaml ```yaml
- uses: denoland/setup-deno@v1 - 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 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 ### Specific stable
```yaml ```yaml