From 877e3e063288d17fbfd7819a7417f3d0bedaf1f0 Mon Sep 17 00:00:00 2001 From: Edward Bebbington <47337480+ebebbington@users.noreply.github.com> Date: Thu, 15 Jul 2021 15:17:39 +0100 Subject: [PATCH] chore: note about targeting the latest version (#12) --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f971246..4d9a604 100644 --- a/README.md +++ b/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