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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -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