Commit 09402cb
authored
chore(deps): update minor and patch updates to github actions (#332)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
|
[actions/download-artifact](https://redirect.github.com/actions/download-artifact)
| action | patch | `v8.0.0` → `v8.0.1` |
| [astral-sh/setup-uv](https://redirect.github.com/astral-sh/setup-uv) |
action | minor | `v7.3.1` → `v7.6.0` |
|
[hynek/build-and-inspect-python-package](https://redirect.github.com/hynek/build-and-inspect-python-package)
| action | minor | `v2.14.0` → `v2.17.0` |
---
### Release Notes
<details>
<summary>actions/download-artifact (actions/download-artifact)</summary>
###
[`v8.0.1`](https://redirect.github.com/actions/download-artifact/releases/tag/v8.0.1)
[Compare
Source](https://redirect.github.com/actions/download-artifact/compare/v8.0.0...v8.0.1)
##### What's Changed
- Support for CJK characters in the artifact name by
[@​danwkennedy](https://redirect.github.com/danwkennedy) in
[#​471](https://redirect.github.com/actions/download-artifact/pull/471)
- Add a regression test for artifact name + content-type mismatches by
[@​danwkennedy](https://redirect.github.com/danwkennedy) in
[#​472](https://redirect.github.com/actions/download-artifact/pull/472)
**Full Changelog**:
<actions/download-artifact@v8...v8.0.1>
</details>
<details>
<summary>astral-sh/setup-uv (astral-sh/setup-uv)</summary>
###
[`v7.6.0`](https://redirect.github.com/astral-sh/setup-uv/releases/tag/v7.6.0):
🌈 Fetch uv from Astral's mirror by default
[Compare
Source](https://redirect.github.com/astral-sh/setup-uv/compare/v7.5.0...v7.6.0)
##### 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
- Fetch uv from Astral's mirror by default
[@​zsol](https://redirect.github.com/zsol)
([#​809](https://redirect.github.com/astral-sh/setup-uv/issues/809))
##### 🧰 Maintenance
- Switch to ESM for source and test, use CommonJS for dist
[@​eifinger](https://redirect.github.com/eifinger)
([#​806](https://redirect.github.com/astral-sh/setup-uv/issues/806))
- chore: update known checksums for 0.10.10
@​[github-actions\[bot\]](https://redirect.github.com/apps/github-actions)
([#​804](https://redirect.github.com/astral-sh/setup-uv/issues/804))
##### ⬆️ Dependency updates
- chore(deps): bump zizmorcore/zizmor-action from 0.5.0 to 0.5.2
@​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot)
([#​808](https://redirect.github.com/astral-sh/setup-uv/issues/808))
- Bump deps [@​eifinger](https://redirect.github.com/eifinger)
([#​805](https://redirect.github.com/astral-sh/setup-uv/issues/805))
###
[`v7.5.0`](https://redirect.github.com/astral-sh/setup-uv/releases/tag/v7.5.0):
🌈 Use `astral-sh/versions` as version provider
[Compare
Source](https://redirect.github.com/astral-sh/setup-uv/compare/v7.4.0...v7.5.0)
##### 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:
```json
{"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
- docs: replace copilot instructions with AGENTS.md
[@​eifinger](https://redirect.github.com/eifinger)
([#​794](https://redirect.github.com/astral-sh/setup-uv/issues/794))
##### 🚀 Enhancements
- Use astral-sh/versions as primary version provider
[@​eifinger](https://redirect.github.com/eifinger)
([#​802](https://redirect.github.com/astral-sh/setup-uv/issues/802))
##### 📚 Documentation
- docs: add cross-client dependabot rollup skill
[@​eifinger](https://redirect.github.com/eifinger)
([#​793](https://redirect.github.com/astral-sh/setup-uv/issues/793))
###
[`v7.4.0`](https://redirect.github.com/astral-sh/setup-uv/releases/tag/v7.4.0):
🌈 Add riscv64 architecture support to platform detection
[Compare
Source](https://redirect.github.com/astral-sh/setup-uv/compare/v7.3.1...v7.4.0)
##### Changes
Thank you [@​luhenry](https://redirect.github.com/luhenry) for
adding support for riscv64 arch
##### 🚀 Enhancements
- Add riscv64 architecture support to platform detection
[@​luhenry](https://redirect.github.com/luhenry)
([#​791](https://redirect.github.com/astral-sh/setup-uv/issues/791))
##### 🧰 Maintenance
- Delete .github/workflows/dependabot-build.yml
[@​eifinger](https://redirect.github.com/eifinger)
([#​789](https://redirect.github.com/astral-sh/setup-uv/issues/789))
- Harden Dependabot build workflow
[@​eifinger](https://redirect.github.com/eifinger)
([#​788](https://redirect.github.com/astral-sh/setup-uv/issues/788))
- Fix: check PR author instead of event sender for Dependabot detection
[@​eifinger-bot](https://redirect.github.com/eifinger-bot)
([#​787](https://redirect.github.com/astral-sh/setup-uv/issues/787))
- chore: update known checksums for 0.10.9
@​[github-actions\[bot\]](https://redirect.github.com/apps/github-actions)
([#​783](https://redirect.github.com/astral-sh/setup-uv/issues/783))
- Add workflow to auto-build dist on Dependabot PRs
[@​eifinger-bot](https://redirect.github.com/eifinger-bot)
([#​782](https://redirect.github.com/astral-sh/setup-uv/issues/782))
- chore: update known checksums for 0.10.8
@​[github-actions\[bot\]](https://redirect.github.com/apps/github-actions)
([#​779](https://redirect.github.com/astral-sh/setup-uv/issues/779))
- chore: update known checksums for 0.10.7
@​[github-actions\[bot\]](https://redirect.github.com/apps/github-actions)
([#​775](https://redirect.github.com/astral-sh/setup-uv/issues/775))
##### ⬆️ Dependency updates
- chore(deps): bump versions
[@​eifinger](https://redirect.github.com/eifinger)
([#​792](https://redirect.github.com/astral-sh/setup-uv/issues/792))
- Bump actions/setup-node from 6.2.0 to 6.3.0
@​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot)
([#​790](https://redirect.github.com/astral-sh/setup-uv/issues/790))
- Bump eifinger/actionlint-action from 1.10.0 to 1.10.1
@​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot)
([#​778](https://redirect.github.com/astral-sh/setup-uv/issues/778))
</details>
<details>
<summary>hynek/build-and-inspect-python-package
(hynek/build-and-inspect-python-package)</summary>
###
[`v2.17.0`](https://redirect.github.com/hynek/build-and-inspect-python-package/releases/tag/v2.17.0)
[Compare
Source](https://redirect.github.com/hynek/build-and-inspect-python-package/compare/v2.16.0...v2.17.0)
##### Fixed
- The action now passes [Zizmor](https://zizmor.sh/) in pedantic mode.
[#​212](https://redirect.github.com/hynek/build-and-inspect-python-package/issues/212)
###
[`v2.16.0`](https://redirect.github.com/hynek/build-and-inspect-python-package/releases/tag/v2.16.0)
[Compare
Source](https://redirect.github.com/hynek/build-and-inspect-python-package/compare/v2.15.0...v2.16.0)
##### Added
- New `include-free-threaded` input. When set to `'true'`, free-threaded
Python siblings (for example, `3.14t`) are included in the version
outputs for Python 3.14 and later, inserted inline after each matching
version.
[#​208](https://redirect.github.com/hynek/build-and-inspect-python-package/issues/208)
###
[`v2.15.0`](https://redirect.github.com/hynek/build-and-inspect-python-package/releases/tag/v2.15.0)
[Compare
Source](https://redirect.github.com/hynek/build-and-inspect-python-package/compare/v2.14.0...v2.15.0)
##### Added
- The Python version used to build the package can now be configured
using the `python-version` input.
[#​191](https://redirect.github.com/hynek/build-and-inspect-python-package/pull/191)
</details>
---
### Configuration
📅 **Schedule**: Branch creation - Between day 1 and 7 of the month, and
on Sunday and Saturday ( * * 1-7 * 0,6 ) in timezone
America/Mexico_City, Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/reservoir-data/tap-socketdev).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDIuMTEiLCJ1cGRhdGVkSW5WZXIiOiI0My4xMDIuMTEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent e0822eb commit 09402cb
2 files changed
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| |||
73 | 73 | | |
74 | 74 | | |
75 | 75 | | |
76 | | - | |
| 76 | + | |
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
| |||
0 commit comments