From 7277fa32ef34e39fbb4eb1abc2ea9ced7eb91ffc Mon Sep 17 00:00:00 2001 From: Carlo Goetz Date: Wed, 18 Mar 2026 11:38:18 +0100 Subject: [PATCH] fix(ci) add --frozen to install-dev uv updates the lock file by default. This leads to changes in dependencies when running the generator. Adding `--frozen` installs dependencies without updating them --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b7a61ca1..ebb284cc 100644 --- a/Makefile +++ b/Makefile @@ -8,9 +8,9 @@ install: install-dev: # install services - @for f in $(shell ls ${SERVICES_DIR}); do set -e;uv sync --directory ${SERVICES_DIR}/$${f}; done + @for f in $(shell ls ${SERVICES_DIR}); do set -e;uv sync --frozen --directory ${SERVICES_DIR}/$${f}; done # install core. This needs to be done last or it will get overriden by the dependency installation of the services - uv sync --directory core + uv sync --frozen --directory core test-services: # test core