Skip to content

Commit 09402cb

Browse files
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 [@&#8203;danwkennedy](https://redirect.github.com/danwkennedy) in [#&#8203;471](https://redirect.github.com/actions/download-artifact/pull/471) - Add a regression test for artifact name + content-type mismatches by [@&#8203;danwkennedy](https://redirect.github.com/danwkennedy) in [#&#8203;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 [@&#8203;zsol](https://redirect.github.com/zsol) ([#&#8203;809](https://redirect.github.com/astral-sh/setup-uv/issues/809)) ##### 🧰 Maintenance - Switch to ESM for source and test, use CommonJS for dist [@&#8203;eifinger](https://redirect.github.com/eifinger) ([#&#8203;806](https://redirect.github.com/astral-sh/setup-uv/issues/806)) - chore: update known checksums for 0.10.10 @&#8203;[github-actions\[bot\]](https://redirect.github.com/apps/github-actions) ([#&#8203;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 @&#8203;[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#&#8203;808](https://redirect.github.com/astral-sh/setup-uv/issues/808)) - Bump deps [@&#8203;eifinger](https://redirect.github.com/eifinger) ([#&#8203;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 [@&#8203;eifinger](https://redirect.github.com/eifinger) ([#&#8203;794](https://redirect.github.com/astral-sh/setup-uv/issues/794)) ##### 🚀 Enhancements - Use astral-sh/versions as primary version provider [@&#8203;eifinger](https://redirect.github.com/eifinger) ([#&#8203;802](https://redirect.github.com/astral-sh/setup-uv/issues/802)) ##### 📚 Documentation - docs: add cross-client dependabot rollup skill [@&#8203;eifinger](https://redirect.github.com/eifinger) ([#&#8203;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 [@&#8203;luhenry](https://redirect.github.com/luhenry) for adding support for riscv64 arch ##### 🚀 Enhancements - Add riscv64 architecture support to platform detection [@&#8203;luhenry](https://redirect.github.com/luhenry) ([#&#8203;791](https://redirect.github.com/astral-sh/setup-uv/issues/791)) ##### 🧰 Maintenance - Delete .github/workflows/dependabot-build.yml [@&#8203;eifinger](https://redirect.github.com/eifinger) ([#&#8203;789](https://redirect.github.com/astral-sh/setup-uv/issues/789)) - Harden Dependabot build workflow [@&#8203;eifinger](https://redirect.github.com/eifinger) ([#&#8203;788](https://redirect.github.com/astral-sh/setup-uv/issues/788)) - Fix: check PR author instead of event sender for Dependabot detection [@&#8203;eifinger-bot](https://redirect.github.com/eifinger-bot) ([#&#8203;787](https://redirect.github.com/astral-sh/setup-uv/issues/787)) - chore: update known checksums for 0.10.9 @&#8203;[github-actions\[bot\]](https://redirect.github.com/apps/github-actions) ([#&#8203;783](https://redirect.github.com/astral-sh/setup-uv/issues/783)) - Add workflow to auto-build dist on Dependabot PRs [@&#8203;eifinger-bot](https://redirect.github.com/eifinger-bot) ([#&#8203;782](https://redirect.github.com/astral-sh/setup-uv/issues/782)) - chore: update known checksums for 0.10.8 @&#8203;[github-actions\[bot\]](https://redirect.github.com/apps/github-actions) ([#&#8203;779](https://redirect.github.com/astral-sh/setup-uv/issues/779)) - chore: update known checksums for 0.10.7 @&#8203;[github-actions\[bot\]](https://redirect.github.com/apps/github-actions) ([#&#8203;775](https://redirect.github.com/astral-sh/setup-uv/issues/775)) ##### ⬆️ Dependency updates - chore(deps): bump versions [@&#8203;eifinger](https://redirect.github.com/eifinger) ([#&#8203;792](https://redirect.github.com/astral-sh/setup-uv/issues/792)) - Bump actions/setup-node from 6.2.0 to 6.3.0 @&#8203;[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#&#8203;790](https://redirect.github.com/astral-sh/setup-uv/issues/790)) - Bump eifinger/actionlint-action from 1.10.0 to 1.10.1 @&#8203;[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#&#8203;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. [#&#8203;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. [#&#8203;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. [#&#8203;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

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919
with:
2020
fetch-depth: 0
21-
- uses: hynek/build-and-inspect-python-package@efb823f52190ad02594531168b7a2d5790e66516 # v2.14.0
21+
- uses: hynek/build-and-inspect-python-package@fe0a0fb1925ca263d076ca4f2c13e93a6e92a33e # v2.17.0
2222
id: baipp
2323

2424
publish:
@@ -30,7 +30,7 @@ jobs:
3030
url: https://pypi.org/p/${{ needs.build.outputs.package_name }}/${{ needs.build.outputs.package_version }}
3131
if: startsWith(github.ref, 'refs/tags/')
3232
steps:
33-
- uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
33+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
3434
with:
3535
name: Packages
3636
path: dist

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
steps:
5757
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
58-
- uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
58+
- uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
5959
with:
6060
version: ${{ env.UV_VERSION }}
6161
- name: Run tests
@@ -73,7 +73,7 @@ jobs:
7373
runs-on: ubuntu-24.04
7474
steps:
7575
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
76-
- uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1
76+
- uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
7777
with:
7878
version: ${{ env.UV_VERSION }}
7979
- name: Run typing checks

0 commit comments

Comments
 (0)