Commit ec1f408
authored
build(deps): bump astral-sh/setup-uv from 7.4.0 to 7.5.0 in /.github/actions/setup (#600)
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from
7.4.0 to 7.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/astral-sh/setup-uv/releases">astral-sh/setup-uv's
releases</a>.</em></p>
<blockquote>
<h2>v7.5.0 🌈 Use <code>astral-sh/versions</code> as version
provider</h2>
<h1>No more rate-limits</h1>
<p>This release addresses a long-standing source of timeouts and
rate-limit failures in setup-uv.</p>
<p>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.</p>
<p>The <code>manifest-file</code> 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.</p>
<p>This release solves the problem by sourcing version data from
Astral’s versions repository via the raw content endpoint:</p>
<p><a
href="https://raw.githubusercontent.com/astral-sh/versions/refs/heads/main/v1/uv.ndjson">https://raw.githubusercontent.com/astral-sh/versions/refs/heads/main/v1/uv.ndjson</a></p>
<p>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.</p>
<hr />
<blockquote>
<p>[!TIP]
The next section is only interesting for users of the
<code>manifest-file</code> input</p>
</blockquote>
<p>The <code>manifest-file</code> input lets you override that source
with your own URL, for example to test custom uv builds or alternate
download locations.</p>
<p>The manifest file must be in NDJSON format, where each line is a JSON
object representing a version and its artifacts. For example:</p>
<pre
lang="json"><code>{"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":"..."}]}
</code></pre>
<blockquote>
<p>[!WARNING]<br />
The old format still works but is deprecated. A warning will be logged
when you use it.</p>
</blockquote>
<h2>Changes</h2>
<ul>
<li>docs: replace copilot instructions with AGENTS.md <a
href="https://github.com/eifinger"><code>@eifinger</code></a> (<a
href="https://redirect.github.com/astral-sh/setup-uv/issues/794">#794</a>)</li>
</ul>
<h2>🚀 Enhancements</h2>
<ul>
<li>Use astral-sh/versions as primary version provider <a
href="https://github.com/eifinger"><code>@eifinger</code></a> (<a
href="https://redirect.github.com/astral-sh/setup-uv/issues/802">#802</a>)</li>
</ul>
<h2>📚 Documentation</h2>
<ul>
<li>docs: add cross-client dependabot rollup skill <a
href="https://github.com/eifinger"><code>@eifinger</code></a> (<a
href="https://redirect.github.com/astral-sh/setup-uv/issues/793">#793</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/astral-sh/setup-uv/commit/e06108dd0aef18192324c70427afc47652e63a82"><code>e06108d</code></a>
Use astral-sh/versions as primary version provider (<a
href="https://redirect.github.com/astral-sh/setup-uv/issues/802">#802</a>)</li>
<li><a
href="https://github.com/astral-sh/setup-uv/commit/0f6ec07aafe46cff7a322c837e5ba37d95c82b00"><code>0f6ec07</code></a>
docs: replace copilot instructions with AGENTS.md (<a
href="https://redirect.github.com/astral-sh/setup-uv/issues/794">#794</a>)</li>
<li><a
href="https://github.com/astral-sh/setup-uv/commit/821e5c98158b218f7c8e97d0ea3862c6d6425e8b"><code>821e5c9</code></a>
docs: add cross-client dependabot rollup skill (<a
href="https://redirect.github.com/astral-sh/setup-uv/issues/793">#793</a>)</li>
<li>See full diff in <a
href="https://github.com/astral-sh/setup-uv/compare/6ee6290f1cbc4156c0bdd66691b2c144ef8df19a...e06108dd0aef18192324c70427afc47652e63a82">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 4dbe7ee commit ec1f408
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| |||
0 commit comments