Skip to content

Commit 4798fa9

Browse files
committed
Use --frozen for all uv commands
1 parent 33b284e commit 4798fa9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/install_requirements/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ runs:
2929
shell: bash
3030

3131
- name: List dependency tree
32-
run: uv export --format requirements.txt --no-hashes
32+
run: uv export --frozen --format requirements.txt --no-hashes
3333
shell: bash

.github/workflows/_dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Build sdist and wheel
1919
run: >
2020
export SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct) &&
21-
uv build
21+
uv build --frozen
2222
2323
- name: Upload sdist and wheel as artifacts
2424
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
plugins: rabbitmq_stomp
6464

6565
- name: Start Blueapi Server
66-
run: uv run blueapi -c ${{ github.workspace }}/tests/unit_tests/example_yaml/valid_stomp_config.yaml serve &
66+
run: uv run --frozen blueapi -c ${{ github.workspace }}/tests/unit_tests/example_yaml/valid_stomp_config.yaml serve &
6767

6868
- name: Run tests
6969
run: uv run --frozen tox -e system-test

0 commit comments

Comments
 (0)