Skip to content

Commit

Permalink
Use --frozen for running scripts to avoid updating the environment
Browse files Browse the repository at this point in the history
  • Loading branch information
foarsitter committed Oct 5, 2024
1 parent 5c4abe5 commit 9a3e7eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/django-issue-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 1 addition & 1 deletion .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
git config --global user.name "github-actions"
git config --global user.email "[email protected]"
- 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 changes: 1 addition & 1 deletion .github/workflows/update-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down

0 comments on commit 9a3e7eb

Please sign in to comment.