Skip to content

Commit 93950b0

Browse files
authored
Use v1 ref in examples
The v1 branch will be updated on every release that increments the minor or patch version. Therefore, the use of this ref in workflows will result in the workflow automatically benefiting from ongoing improvements or fixes that don't cause a breaking change.
1 parent 2820737 commit 93950b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ To get the latest stable version of `arduino-cli` just add this step:
1010

1111
```yaml
1212
- name: Install Arduino CLI
13-
uses: arduino/setup-arduino-cli@v1.1.1
13+
uses: arduino/setup-arduino-cli@v1
1414
```
1515
1616
If you want to pin a major or minor version you can use the `.x` wildcard:
1717

1818
```yaml
1919
- name: Install Arduino CLI
20-
uses: arduino/setup-arduino-cli@v1.1.1
20+
uses: arduino/setup-arduino-cli@v1
2121
with:
2222
version: "0.x"
2323
```
@@ -26,7 +26,7 @@ To pin the exact version:
2626

2727
```yaml
2828
- name: Install Arduino CLI
29-
uses: arduino/setup-arduino-cli@v1.1.1
29+
uses: arduino/setup-arduino-cli@v1
3030
with:
3131
version: "0.5.0"
3232
```

0 commit comments

Comments
 (0)