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
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ jobs:
workspaces: "codebase"
key: ${{ matrix.target }}

- name: Install protoc
uses: arduino/setup-protoc@v3
with:
version: "25.x"
repo-token: ${{ secrets.GITHUB_TOKEN }}
Comment on lines +55 to +59
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (bug_risk): Consider pinning protoc to a specific version for reproducible builds

Using a floating version like "25.x" means builds can silently change when new minor releases are published, potentially introducing regressions. Pinning to a specific version (e.g., "25.3") keeps builds deterministic and ensures changes only occur when you explicitly update the version.

Suggested change
- name: Install protoc
uses: arduino/setup-protoc@v3
with:
version: "25.x"
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install protoc
uses: arduino/setup-protoc@v3
with:
# Pin protoc version for reproducible builds; update explicitly as needed
version: "25.3"
repo-token: ${{ secrets.GITHUB_TOKEN }}


- name: Setup Go
uses: actions/setup-go@v5
with:
Expand Down
Loading