Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .coverage
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: install uv
uses: astral-sh/setup-uv@v3
uses: astral-sh/setup-uv@v6
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (bug_risk): Consider pinning the action to a full semver or commit SHA

Loose tags (e.g., v6) can pull in unexpected patch updates that break builds. Pin to a full semver (e.g., v6.2.1) or a commit SHA for reproducible workflows.

Suggested change
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v6.2.1

with:
enable-cache: true
cache-dependency-glob: requirements-dev.txt
Expand Down
Loading