Skip to content

Commit b49bf2c

Browse files
committed
Use frozen instead of locked
1 parent 8784091 commit b49bf2c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@
5959
// Mount the parent as /workspaces so we can pip install peers as editable
6060
"workspaceMount": "source=${localWorkspaceFolder}/..,target=/workspaces,type=bind",
6161
// After the container is created, install the python project in editable form
62-
"postCreateCommand": "uv sync --locked && uvx pre-commit install && SHELL=bash uv tool update-shell"
62+
"postCreateCommand": "uv sync --frozen && uvx pre-commit install && SHELL=bash uv tool update-shell"
6363
}

.github/actions/install_requirements/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525
enable-cache: true
2626

2727
- name: Install project
28-
run: uv sync --locked --all-extras --dev
28+
run: uv sync --frozen --all-extras --dev
2929
shell: bash
3030

3131
- name: List dependency tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ FROM developer AS build
2929
COPY --chmod=o+wrX . /workspaces/blueapi
3030

3131
WORKDIR /workspaces/blueapi
32-
RUN uv sync --locked
32+
RUN uv sync --frozen
3333

3434

3535
FROM build AS debug

0 commit comments

Comments
 (0)