From a1992007742ec031e68a3619b9892336ae903a5e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Oct 2025 16:04:08 +0000 Subject: [PATCH 1/4] CP-29639: Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/claude.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index e26a69f24..d7ef13d2b 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 1 From 3ae50670d4cfbc05ae14197484f145af9785d6e6 Mon Sep 17 00:00:00 2001 From: Evan Nemerson Date: Wed, 8 Oct 2025 12:29:36 -0400 Subject: [PATCH 2/4] Disable claude-review job for GitHub Actions. This was failing due to, I believe, a missing Anthropic API key, since it is a repository secret not a dependabot secret. Either way, it's not like dependabot would be receptive to the feedback anyways. Also, all dependabot does is update dependencies, so it's not like Claude will have any useful feedback... --- .github/workflows/claude.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index d7ef13d2b..3ce6c3cde 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -6,6 +6,7 @@ on: jobs: claude-review: + if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }} runs-on: ubuntu-latest permissions: contents: read From fbc0c0c899afc9722fbe6b91a8c75e78cec9eb0c Mon Sep 17 00:00:00 2001 From: Evan Nemerson Date: Wed, 8 Oct 2025 18:58:52 -0400 Subject: [PATCH 3/4] correct protoc path --- .github/workflows/golang-ci.yml | 4 +++- app/types/clusterconfig/clusterconfig.pb.go | 4 ++-- app/types/status/cluster_status.pb.go | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/golang-ci.yml b/.github/workflows/golang-ci.yml index 7d3e1d439..c2c74f217 100644 --- a/.github/workflows/golang-ci.yml +++ b/.github/workflows/golang-ci.yml @@ -124,12 +124,14 @@ jobs: with: version: "29.3" repo-token: ${{ secrets.GITHUB_TOKEN }} + - name: Clean generated files + run: make maintainer-clean - name: Install tools run: make install-tools - name: Generate code run: make generate env: - PROTOC: ${{ steps.setup-protoc.outputs.path }} + PROTOC: ${{ steps.setup-protoc.outputs.path }}/bin/protoc - name: Format code run: make format - name: Check file format diff --git a/app/types/clusterconfig/clusterconfig.pb.go b/app/types/clusterconfig/clusterconfig.pb.go index 4bc770963..94ba0bc15 100644 --- a/app/types/clusterconfig/clusterconfig.pb.go +++ b/app/types/clusterconfig/clusterconfig.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.7 -// protoc v6.32.0 +// protoc-gen-go v1.36.9 +// protoc v5.29.3 // source: clusterconfig.proto package clusterconfig diff --git a/app/types/status/cluster_status.pb.go b/app/types/status/cluster_status.pb.go index e1a1492e3..ec8c0445e 100644 --- a/app/types/status/cluster_status.pb.go +++ b/app/types/status/cluster_status.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.36.7 -// protoc v6.32.0 +// protoc-gen-go v1.36.9 +// protoc v5.29.3 // source: cluster_status.proto package status From 05206f4e766c122742e087ed5e89b35d2d87bf01 Mon Sep 17 00:00:00 2001 From: Evan Nemerson Date: Wed, 8 Oct 2025 18:59:27 -0400 Subject: [PATCH 4/4] Trim some log bloat --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 69d6f0019..2f08a74c4 100644 --- a/Makefile +++ b/Makefile @@ -173,7 +173,7 @@ PRETTIER_TARGET ?= . .PHONY: format-prettier format: format-prettier format-prettier: - $(PRETTIER) --write $(PRETTIER_TARGET) + $(PRETTIER) --write $(PRETTIER_TARGET) | grep -v '(unchanged)$$' || true .PHONY: lint-go lint-go: