From ea7f813263250f1643d9ec94ef7b659dd5dc3a4f Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Wed, 28 Jan 2026 14:49:47 -0800 Subject: [PATCH] Remove buf update from make protos The protos target gets run during CI to validate there are not ungenerated proto changes. The updates can change at any point if buf dependencies are updated at this point. While it is unlikely they will change often, they should change intentially, just as go dependencies would happen. Signed-off-by: Derek McGowan --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 7b17978..e0a211b 100644 --- a/Makefile +++ b/Makefile @@ -96,7 +96,6 @@ generate: protos protos: @echo "$(WHALE) $@" - @(cd ${ROOTDIR}/api && buf dep update) @(cd ${ROOTDIR}/api && PATH="${ROOTDIR}/bin:${PATH}" buf generate) @(cd ${ROOTDIR}/api && buf build --exclude-imports -o next.txtpb) go-fix-acronym -w -a '^Os' $(shell find api/ -name '*.pb.go')