Add --locked to all CI uv run commands

This commit is contained in:
Bruno Alla 2025-09-10 08:51:06 +01:00 committed by Bruno Alla
parent 5b89acdb1a
commit 6266e4d5e0
3 changed files with 3 additions and 3 deletions

View File

@ -20,6 +20,6 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Create Django Major Issue
run: uv run --frozen scripts/create_django_issue.py
run: uv run --locked scripts/create_django_issue.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -22,6 +22,6 @@ jobs:
git config --global user.name "github-actions"
git config --global user.email "action@github.com"
- name: Update changelog
run: uv run --frozen scripts/update_changelog.py
run: uv run --locked scripts/update_changelog.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -21,7 +21,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Update list
run: uv run --frozen scripts/update_contributors.py
run: uv run --locked scripts/update_contributors.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}