From 0838a7ddffb3f89bba87824e93c964e528a56827 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Mon, 9 Mar 2026 13:41:22 +0000 Subject: [PATCH] Change uv sync command to use --locked option This ensures that we both: * don't update the uv.lock file (as `--frozen` did) * check that the `uv.lock` doesn't need an update (for example, if `pyproject.toml` changed and is now out of sync) --- .github/workflows/ci-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index de57088..2980a05 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -31,7 +31,7 @@ jobs: uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1 - name: Install packages - run: uv sync --frozen + run: uv sync --locked - name: Check formatting run: |