From 583bee3adcbc9d36f0afc65cfd8251f78443b0eb Mon Sep 17 00:00:00 2001 From: Steffano Pereira Date: Sun, 1 Dec 2019 19:15:00 -0300 Subject: [PATCH] Fix link from uses on Readme The following link adds a `v` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 68a0f1b..a1ed4c7 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,14 @@ To get the latest stable version of `arduino-cli` just add this step: ```yaml - name: Install Arduino CLI - uses: arduino/setup-arduino-cli@m1.0.0 + uses: arduino/setup-arduino-cli@v1.0.0 ``` If you want to pin a major or minor version you can use the `.x` wildcard: ```yaml - name: Install Arduino CLI - uses: arduino/setup-arduino-cli@m1.0.0 + uses: arduino/setup-arduino-cli@v1.0.0 with: version: '0.x' ``` @@ -26,7 +26,7 @@ To pin the exact version: ```yaml - name: Install Arduino CLI - uses: arduino/setup-arduino-cli@m1.0.0 + uses: arduino/setup-arduino-cli@v1.0.0 with: version: '0.5.0' ```