Skip to content

Commit 4c2bfca

Browse files
committed
chore: run CI with locked dependencies
This ensures that uv.lock file is up-to date. JIRA: TRIVIAL risk: low
1 parent 1e43f2e commit 4c2bfca

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/bump-version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Install dependencies
3636
run: |
37-
uv sync --only-group release
37+
uv sync --only-group release --locked
3838
3939
- name: Bump version
4040
id: bump

.github/workflows/dev-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: astral-sh/setup-uv@v6
4141
- name: Install dependencies
4242
run: |
43-
uv sync --only-group release
43+
uv sync --only-group release --locked
4444
- name: Bump to dev
4545
run: uv run tbump --only-patch --non-interactive $(./scripts/next_dev.sh)
4646
- name: Build ${{ matrix.component }}

.github/workflows/rw-python-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
python-version: 3.14
3838
- name: Install dependencies
3939
run: |
40-
uv sync --only-group lint
40+
uv sync --only-group lint --locked
4141
- name: pep8 and formatting check
4242
run: |
4343
make format
@@ -51,7 +51,7 @@ jobs:
5151
uses: astral-sh/setup-uv@v6
5252
- name: Install dependencies
5353
run: |
54-
uv sync --only-group tox --only-group type
54+
uv sync --only-group tox --only-group type --locked
5555
- name: type check
5656
run: |
5757
make type-check

0 commit comments

Comments
 (0)