mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-25 11:04:04 +03:00
Use --frozen for running scripts to avoid updating the environment
This commit is contained in:
parent
5c4abe5b78
commit
9a3e7ebf16
2
.github/workflows/django-issue-checker.yml
vendored
2
.github/workflows/django-issue-checker.yml
vendored
|
@ -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 }}
|
||||
|
|
2
.github/workflows/update-changelog.yml
vendored
2
.github/workflows/update-changelog.yml
vendored
|
@ -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 }}
|
||||
|
|
2
.github/workflows/update-contributors.yml
vendored
2
.github/workflows/update-contributors.yml
vendored
|
@ -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 }}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user