Skip to content

Commit 0b11bdb

Browse files
dsp-antclaude
andauthored
ci: add --frozen flag to all uv commands in workflows (#970)
Co-authored-by: Claude <[email protected]>
1 parent 41f3bc3 commit 0b11bdb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish-docs-manually.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
mkdocs-material-
3131
3232
- run: uv sync --frozen --group docs
33-
- run: uv run --no-sync mkdocs gh-deploy --force
33+
- run: uv run --frozen --no-sync mkdocs gh-deploy --force

.github/workflows/publish-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: uv python install 3.12
2323

2424
- name: Build
25-
run: uv build
25+
run: uv build --frozen
2626

2727
- name: Upload artifacts
2828
uses: actions/upload-artifact@v4
@@ -79,4 +79,4 @@ jobs:
7979
mkdocs-material-
8080
8181
- run: uv sync --frozen --group docs
82-
- run: uv run --no-sync mkdocs gh-deploy --force
82+
- run: uv run --frozen --no-sync mkdocs gh-deploy --force

.github/workflows/shared.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ jobs:
4444
run: uv sync --frozen --all-extras --python ${{ matrix.python-version }}
4545

4646
- name: Run pytest
47-
run: uv run --no-sync pytest
47+
run: uv run --frozen --no-sync pytest
4848
continue-on-error: true

0 commit comments

Comments
 (0)