Skip to content

Commit 0a973a1

Browse files
committed
chore(ci): replace Protoc setup with protobuf-compiler installation in GitHub Actions
1 parent 442ffb2 commit 0a973a1

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

.github/workflows/build-image.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,8 @@ jobs:
3232
with:
3333
cache-key: ${{env.MY_RUNNER}}
3434

35-
- name: Install Protoc
36-
uses: arduino/setup-protoc@v3
37-
with:
38-
version: '34.x'
39-
repo-token: ${{ secrets.GITHUB_TOKEN }} # Avoids GitHub API rate limiting
35+
- name: Install protobuf-compiler (system package)
36+
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
4037

4138
# Build with the prover feature
4239
- name: Build the application

0 commit comments

Comments
 (0)