We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d970d2d commit 502a737Copy full SHA for 502a737
.github/workflows/release.yaml
@@ -193,16 +193,9 @@ jobs:
193
run: go install golang.org/x/tools/cmd/goimports@latest
194
195
- name: Install Protoc
196
- run: |
197
- # protoc must be in lockstep with our dogfood Dockerfile
198
- # or the version in the comments will differ.
199
- set -x
200
- cd dogfood
201
- DOCKER_BUILDKIT=1 docker build . --target proto -t protoc
202
- protoc_path=/usr/local/bin/protoc
203
- docker run --rm --entrypoint cat protoc /tmp/bin/protoc > $protoc_path
204
- chmod +x $protoc_path
205
- protoc --version
+ uses: arduino/setup-protoc@v1
+ with:
+ version: '3.21.5'
206
207
- name: Install dependencies
208
run: |
0 commit comments