Skip to content

Commit c07b745

Browse files
authored
Update action name in documentation (#5)
The documentation was still demonstrating the use of the deprecated action arduino/actions/setup-protoc
1 parent 53c8869 commit c07b745

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ To get the latest stable version of `protoc` just add this step:
88

99
```yaml
1010
- name: Install Protoc
11-
uses: Arduino/actions/setup-protoc@master
11+
uses: arduino/setup-protoc@master
1212
```
1313
1414
If you want to pin a major or minor version you can use the `.x` wildcard:
1515

1616
```yaml
1717
- name: Install Protoc
18-
uses: Arduino/actions/setup-protoc@master
18+
uses: arduino/setup-protoc@master
1919
with:
2020
version: '3.x'
2121
```
@@ -24,7 +24,7 @@ You can also require to include releases marked as `pre-release` in Github using
2424

2525
```yaml
2626
- name: Install Protoc
27-
uses: Arduino/actions/setup-protoc@master
27+
uses: arduino/setup-protoc@master
2828
with:
2929
version: '3.x'
3030
include-pre-releases: true
@@ -34,7 +34,7 @@ To pin the exact version:
3434

3535
```yaml
3636
- name: Install Protoc
37-
uses: Arduino/actions/setup-protoc@master
37+
uses: arduino/setup-protoc@master
3838
with:
3939
version: '3.9.1'
4040
```

0 commit comments

Comments
 (0)