Skip to content

Commit 652575c

Browse files
andrewhsuclaude
andcommitted
ci: pin buf-action to 1.71.0 to match proto codegen
PR #2512 pinned the buf CLI in .github/workflows/buf.yml to 1.65.0, but #2518 had already bumped codegen (BUF_VERSION in taskfiles/proto.yaml) to 1.71.0 and reformatted every proto with the 1.71.0 formatter. CI then validated 1.71.0-formatted protos with buf 1.65.0, which re-expands the nested message literals that 1.71.0 collapses, so buf format --diff failed on master across ~30 protos. Bump all three buf-action version pins to 1.71.0 so the CI format check matches the committed protos and the codegen source of truth. Verified locally against current master protos: - buf 1.65.0 format --diff --exit-code: exit 100 (reproduces the failure) - buf 1.71.0 format --diff --exit-code: clean Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 1b041b7 commit 652575c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/buf.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: bufbuild/buf-action@v1
4949
with:
5050
# buf CLI version - keep in sync with BUF_VERSION in taskfiles/proto.yaml
51-
version: 1.65.0
51+
version: 1.71.0
5252
lint: true
5353
format: true
5454
breaking: ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'Buf Skip Breaking') }}
@@ -82,7 +82,7 @@ jobs:
8282
uses: bufbuild/buf-action@v1
8383
with:
8484
# buf CLI version - keep in sync with BUF_VERSION in taskfiles/proto.yaml
85-
version: 1.65.0
85+
version: 1.71.0
8686
# No validation - already done in validate job
8787
lint: false
8888
format: false
@@ -117,7 +117,7 @@ jobs:
117117
uses: bufbuild/buf-action@v1
118118
with:
119119
# buf CLI version - keep in sync with BUF_VERSION in taskfiles/proto.yaml
120-
version: 1.65.0
120+
version: 1.71.0
121121
# Only archive - no other operations
122122
push: true
123123
token: ${{ env.BUF_TOKEN }}

0 commit comments

Comments
 (0)