Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with: { python-version: '3.12' }
- uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
- uses: astral-sh/setup-uv@bec219d24cd3e171d82865faccec33120bb574f4 # v10.1.0
with:
version: '0.12.5'
enable-cache: false
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ci_security_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def test_release_validates_runtime_manifest_schema_before_archive(self) -> None:
def test_release_provisions_pinned_uv_before_schema_validation(self) -> None:
text = (WORKFLOWS / "release.yml").read_text(encoding="utf-8")
setup = text.index(
"astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d"
"astral-sh/setup-uv@bec219d24cd3e171d82865faccec33120bb574f4"
)
version = text.index("version: '0.12.5'", setup)
validate = text.index("scripts/validate_runtime_manifest_schema.py", version)
Expand Down
Loading