Use --frozen for running scripts to avoid updating the environment

This commit is contained in:
jelmert 2024-09-19 10:49:05 +02:00 committed by Jelmer Draaijer
parent 5c4abe5b78
commit 9a3e7ebf16
3 changed files with 3 additions and 3 deletions

View File

@ -22,6 +22,6 @@ jobs:
with:
enable-cache: "true"
- name: Create Django Major Issue
run: uv run scripts/create_django_issue.py
run: uv run --frozen scripts/create_django_issue.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

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

View File

@ -23,7 +23,7 @@ jobs:
with:
enable-cache: "true"
- name: Update list
run: uv run scripts/update_contributors.py
run: uv run --frozen scripts/update_contributors.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}