File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 4343
4444 - name : Install dependencies
4545 working-directory : src/${{ matrix.package }}
46- run : uv sync --frozen --all-extras --dev
46+ run : uv sync --locked --all-extras --dev
4747
4848 - name : Run pyright
4949 working-directory : src/${{ matrix.package }}
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ jobs:
128128
129129 - name : Install dependencies
130130 working-directory : src/${{ matrix.package }}
131- run : uv sync --frozen --all-extras --dev
131+ run : uv sync --locked --all-extras --dev
132132
133133 - name : Run pyright
134134 working-directory : src/${{ matrix.package }}
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ ENV UV_LINK_MODE=copy
1414RUN --mount=type=cache,target=/root/.cache/uv \
1515 --mount=type=bind,source=uv.lock,target=uv.lock \
1616 --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
17- uv sync --frozen --no-install-project --no-dev --no-editable
17+ uv sync --locked --no-install-project --no-dev --no-editable
1818
1919# Then, add the rest of the project source code and install it
2020# Installing separately from its dependencies allows optimal layer caching
2121ADD . /app
2222RUN --mount=type=cache,target=/root/.cache/uv \
23- uv sync --frozen --no-dev --no-editable
23+ uv sync --locked --no-dev --no-editable
2424
2525FROM python:3.12-slim-bookworm
2626
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ ENV UV_LINK_MODE=copy
1414RUN --mount=type=cache,target=/root/.cache/uv \
1515 --mount=type=bind,source=uv.lock,target=uv.lock \
1616 --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
17- uv sync --frozen --no-install-project --no-dev --no-editable
17+ uv sync --locked --no-install-project --no-dev --no-editable
1818
1919# Then, add the rest of the project source code and install it
2020# Installing separately from its dependencies allows optimal layer caching
2121ADD . /app
2222RUN --mount=type=cache,target=/root/.cache/uv \
23- uv sync --frozen --no-dev --no-editable
23+ uv sync --locked --no-dev --no-editable
2424
2525FROM python:3.12-slim-bookworm
2626
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ ENV UV_LINK_MODE=copy
1414RUN --mount=type=cache,target=/root/.cache/uv \
1515 --mount=type=bind,source=uv.lock,target=uv.lock \
1616 --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
17- uv sync --frozen --no-install-project --no-dev --no-editable
17+ uv sync --locked --no-install-project --no-dev --no-editable
1818
1919# Then, add the rest of the project source code and install it
2020# Installing separately from its dependencies allows optimal layer caching
2121ADD . /app
2222RUN --mount=type=cache,target=/root/.cache/uv \
23- uv sync --frozen --no-dev --no-editable
23+ uv sync --locked --no-dev --no-editable
2424
2525FROM python:3.12-slim-bookworm
2626
You can’t perform that action at this time.
0 commit comments