Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/check-protobuf-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ jobs:
go-version: ${{ env.GO_VERSION }}

- name: Install protoc compiler
uses: arduino/setup-protoc@v1
uses: arduino/setup-protoc@v2
with:
version: v3.16.0
version: v21.12
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Install Go deps
run: |
go install google.golang.org/protobuf/cmd/[email protected]
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1.0
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.2.0

- name: Install Task
uses: arduino/setup-task@v1
Expand All @@ -77,7 +77,9 @@ jobs:

- name: Check protocol buffers compile correctly
if: runner.os == 'Linux'
run: task protoc:compile
run: |
task protoc:compile
git diff --color --exit-code

check:
needs: run-determination
Expand Down