From 59220ca507f155af3fdccf1e98812152e4556ef4 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Thu, 10 Apr 2025 15:47:00 -0400 Subject: [PATCH] Add `--locked` to `uv sync` in GitHub Actions guide (#12819) ## Summary Closes #10793 As requested by @konstin in - https://github.com/astral-sh/uv/issues/10793#issuecomment-2603869549 --- docs/guides/integration/github.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/integration/github.md b/docs/guides/integration/github.md index 173d838f8..bb7f21b81 100644 --- a/docs/guides/integration/github.md +++ b/docs/guides/integration/github.md @@ -190,7 +190,7 @@ jobs: uses: astral-sh/setup-uv@v5 - name: Install the project - run: uv sync --all-extras --dev + run: uv sync --locked --all-extras --dev - name: Run tests # For example, using `pytest`