Skip to content

Update eifinger/setup-uv action to v7.6.0#3055

Open
nextest-bot wants to merge 1 commit intomainfrom
renovate/eifinger-setup-uv-7.x
Open

Update eifinger/setup-uv action to v7.6.0#3055
nextest-bot wants to merge 1 commit intomainfrom
renovate/eifinger-setup-uv-7.x

Conversation

@nextest-bot
Copy link
Collaborator

@nextest-bot nextest-bot commented Feb 7, 2026

This PR contains the following updates:

Package Type Update Change
eifinger/setup-uv action minor v7.2.1 -> v7.6.0

Release Notes

eifinger/setup-uv (eifinger/setup-uv)

v7.6.0: 🌈 Fetch uv from Astral's mirror by default

Compare Source

Changes

We now default to download uv from releases.astral.sh.
This means by default we don't hit the GitHub API at all and shouldn't see any rate limits and timeouts any more.

🚀 Enhancements

🧰 Maintenance

⬆️ Dependency updates

v7.5.0: 🌈 Use `astral-sh/versions` as version provider

Compare Source

No more rate-limits

This release addresses a long-standing source of timeouts and rate-limit failures in setup-uv.

Previously, the action resolved version identifiers like 0.5.x by iterating over available uv releases via the GitHub API to find the best match. In contrast, latest and exact versions such as 0.5.0 skipped version resolution entirely and downloaded uv directly.

The manifest-file input was an earlier attempt to improve this. It allows providing an url to a file that lists available versions, checksums, and even custom download URLs. The action also shipped with such a manifest.
However, because that bundled file could become outdated whenever new uv releases were published, the action still had to fall back to the GitHub API in many cases.

This release solves the problem by sourcing version data from Astral’s versions repository via the raw content endpoint:

https://raw.githubusercontent.com/astral-sh/versions/refs/heads/main/v1/uv.ndjson

By using the raw endpoint instead of the GitHub API, version resolution no longer depends on API authentication and is much less likely to run into rate limits or timeouts.


[!TIP]
The next section is only interesting for users of the manifest-file input

The manifest-file input lets you override that source with your own URL, for example to test custom uv builds or alternate download locations.

The manifest file must be in NDJSON format, where each line is a JSON object representing a version and its artifacts. For example:

{"version":"0.10.7","artifacts":[{"platform":"x86_64-unknown-linux-gnu","variant":"default","url":"https://example.com/uv-x86_64-unknown-linux-gnu.tar.gz","archive_format":"tar.gz","sha256":"..."}]}
{"version":"0.10.6","artifacts":[{"platform":"x86_64-unknown-linux-gnu","variant":"default","url":"https://example.com/uv-x86_64-unknown-linux-gnu.tar.gz","archive_format":"tar.gz","sha256":"..."}]}

[!WARNING]
The old format still works but is deprecated. A warning will be logged when you use it.

Changes

🚀 Enhancements

📚 Documentation

v7.4.0: 🌈 Add riscv64 architecture support to platform detection

Compare Source

Changes

Thank you @​luhenry for adding support for riscv64 arch

🚀 Enhancements

🧰 Maintenance

⬆️ Dependency updates

v7.3.1: 🌈 fall back to VERSION_CODENAME when VERSION_ID is not available

Compare Source

Changes

This release adds support for running in containers like debian:testing or debian:unstable

🐛 Bug fixes

🧰 Maintenance

⬆️ Dependency updates

v7.3.0: 🌈 New features and bug fixes for activate-environment

Compare Source

Changes

This release contains a few bug fixes and a new feature for the activate-environment functionality.

🐛 Bug fixes

🚀 Enhancements

🧰 Maintenance

📚 Documentation

⬆️ Dependency updates


Configuration

📅 Schedule: Branch creation - "after 8pm,before 6am" in timezone America/Los_Angeles, Automerge - "after 8pm,before 6am" in timezone America/Los_Angeles.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@nextest-bot nextest-bot added the dependencies Pull requests that update a dependency file label Feb 7, 2026
@codecov
Copy link

codecov bot commented Feb 7, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 85.23%. Comparing base (9319537) to head (5e271e3).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #3055      +/-   ##
==========================================
- Coverage   85.23%   85.23%   -0.01%     
==========================================
  Files         158      158              
  Lines       46610    46610              
==========================================
- Hits        39728    39727       -1     
- Misses       6882     6883       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@trunk-io
Copy link

trunk-io bot commented Feb 7, 2026

Static BadgeStatic BadgeStatic BadgeStatic Badge

View Full Report ↗︎Docs

@nextest-bot nextest-bot changed the title Update eifinger/setup-uv action to v7.3.0 Update eifinger/setup-uv action to v7.3.1 Feb 28, 2026
@nextest-bot nextest-bot force-pushed the renovate/eifinger-setup-uv-7.x branch from aa6f5f4 to da6a34b Compare February 28, 2026 04:55
@nextest-bot nextest-bot force-pushed the renovate/eifinger-setup-uv-7.x branch from da6a34b to 60cc99a Compare March 11, 2026 03:42
@nextest-bot nextest-bot changed the title Update eifinger/setup-uv action to v7.3.1 Update eifinger/setup-uv action to v7.4.0 Mar 11, 2026
@nextest-bot nextest-bot force-pushed the renovate/eifinger-setup-uv-7.x branch from 60cc99a to 7c2934a Compare March 13, 2026 03:47
@nextest-bot nextest-bot changed the title Update eifinger/setup-uv action to v7.4.0 Update eifinger/setup-uv action to v7.5.0 Mar 13, 2026
@nextest-bot nextest-bot force-pushed the renovate/eifinger-setup-uv-7.x branch from 7c2934a to 5e271e3 Compare March 17, 2026 04:02
@nextest-bot nextest-bot changed the title Update eifinger/setup-uv action to v7.5.0 Update eifinger/setup-uv action to v7.6.0 Mar 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant