Skip to content

Commit 67b47b6

Browse files
authored
[skip changelog] Use v1 ref of arduino/setup-protoc action (arduino#889)
The v1.1.0 version of the action neglected to define its repo-token input in the metadata, which results in a `Unexpected input(s) 'repo-token', valid inputs are ['version']` warning shown in the workflow summary on every run. The v1.1.1 release remedies this. The use of the v1 ref will allow the workflows to benefit from any new releases of the action that don't cause breaking changes.
1 parent fead7fd commit 67b47b6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
go get -u github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc
5151
5252
- name: Install protoc compiler
53-
uses: arduino/setup-protoc@v1.1.0
53+
uses: arduino/setup-protoc@v1
5454
with:
5555
repo-token: ${{ secrets.GITHUB_TOKEN }}
5656

.github/workflows/link-validation.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: go get -u github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc
3232

3333
- name: Install protoc compiler
34-
uses: arduino/setup-protoc@v1.1.0
34+
uses: arduino/setup-protoc@v1
3535
with:
3636
repo-token: ${{ secrets.GITHUB_TOKEN }}
3737

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: task check
5656

5757
- name: Install protoc compiler
58-
uses: arduino/setup-protoc@v1.1.0
58+
uses: arduino/setup-protoc@v1
5959
with:
6060
repo-token: ${{ secrets.GITHUB_TOKEN }}
6161

0 commit comments

Comments
 (0)