Skip to content

Commit 76bafda

Browse files
committed
- uv tool run for docs.yml
- uv for security ci
1 parent 8c1f12e commit 76bafda

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
run: uv tool install bandit
2525

2626
- name: Run bandit
27-
run: bandit -r backend/ -x backend/tests/ -ll
27+
run: uv tool run bandit -r backend/ -x backend/tests/ -ll

docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ services:
533533
condition: service_completed_successfully
534534
mongo:
535535
condition: service_started
536-
command: uv run python workers/run_event_replay.py
536+
command: ["uv", "run", "python", "workers/run_event_replay.py"]
537537
env_file:
538538
- ./backend/.env
539539
environment:
@@ -560,7 +560,7 @@ services:
560560
condition: service_completed_successfully
561561
mongo:
562562
condition: service_started
563-
command: uv run python workers/dlq_processor.py
563+
command: ["uv", "run", "python", "workers/dlq_processor.py"]
564564
env_file:
565565
- ./backend/.env
566566
environment:

0 commit comments

Comments
 (0)