Commit b4520eb
authored
chore(deps): update all non-major dependencies (#18)
This PR contains the following updates:
| Package | Type | Update | Change | Pending |
|---|---|---|---|---|
| [actions/checkout](https://redirect.github.com/actions/checkout) |
action | patch | `v7.0.0` → `v7.0.1` | |
|
[pypa/gh-action-pypi-publish](https://redirect.github.com/pypa/gh-action-pypi-publish)
| action | patch | `v1.14.1` → `v1.14.2` | |
|
[renovatebot/github-action](https://redirect.github.com/renovatebot/github-action)
| action | minor | `v46.1.20` → `v46.2.0` | `v46.2.2` (+1) |
---
### Release Notes
<details>
<summary>actions/checkout (actions/checkout)</summary>
###
[`v7.0.1`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v701)
[Compare
Source](https://redirect.github.com/actions/checkout/compare/v7...v7.0.1)
- Skip running unsafe pr check if input is default by
[@​aiqiaoy](https://redirect.github.com/aiqiaoy) in
[#​2518](https://redirect.github.com/actions/checkout/pull/2518)
- Trim only ascii whitespace for branch by
[@​aiqiaoy](https://redirect.github.com/aiqiaoy) in
[#​2521](https://redirect.github.com/actions/checkout/pull/2521)
- Escape values passed to --unset by
[@​aiqiaoy](https://redirect.github.com/aiqiaoy) in
[#​2530](https://redirect.github.com/actions/checkout/pull/2530)
- Various dependency updates
</details>
<details>
<summary>pypa/gh-action-pypi-publish
(pypa/gh-action-pypi-publish)</summary>
###
[`v1.14.2`](https://redirect.github.com/pypa/gh-action-pypi-publish/releases/tag/v1.14.2)
[Compare
Source](https://redirect.github.com/pypa/gh-action-pypi-publish/compare/v1.14.1...v1.14.2)
<p align="right"><i>This one probably won't touch you visibly so just
bookmark <a
href="https://ep2026.europython.eu/session/defending-open-source-from-ai-slop-a-maintainer-s-practical-guide">@​webknjaz's
EuroPython 2026 “AI” slop rant for when it's published on YouTube</a> or
<a href="https://redirect.github.com/sponsors/webknjaz">encourage him to
come back with more to share next year</a>!</i></p>
##### 🛠️ Urgh… Another release!? Again? Explain yourself!
Looking at the diff, you'll only witness updates across the dependency
tree. That's it! It's not a security fix or anything like that even, no.
But you'll want this update.
> \[!tip]
> So what *most* people will find useful is
[@​takluyver](https://redirect.github.com/takluyver)[💰](https://redirect.github.com/sponsors/takluyver)'s
update of Twine to v7 that we use internally
([#​416](https://redirect.github.com/pypa/gh-action-pypi-publish/issues/416)).
This version will let them upload their sdists and wheels containing
core packaging metadata v2.5 to (Test)PyPI.
##### 🧐 Tell me why..
<details>
<summary>
The rest of the updates bump things related to
<code>pypi-attestations</code> and <code>sigstore</code>, which has the
most interesting backstory here. @​facutuesca<a
href="https://redirect.github.com/sponsors/facutuesca">💰</a> sent a
patch in #​417 but a bunch more helped out.
</summary>
TL;DR non-pure-python projects with C-extensions tend to have dozens
(sometimes hundreds) wheels to upload to PyPI per release. They are
often quite big and take time to transfer over the network. People
started noticing problems and coming up with DIY sharding workarounds
like
[aio-libs/aiohttp#13226](https://redirect.github.com/aio-libs/aiohttp/pull/13226)
around July 23.
On this date, projects with a good amount of bytes to publish would
start getting timeouts 5 minutes after the PyPI publishing job begun.
The same job that worked just fine before.
I had to start pinging upstream library and ecosystem people, on GitHub
and privately, to start making sense of what was happening. Eventually,
we collectively concluded that GitHub must've shortened the lifetime of
their OIDC identity — it seems to have used to be 10 minutes long (at
some point in the past) and is now 5 minutes, apparently. It's not
documented clearly, and we have not been able to get any clarity by
attempting to contact GitHub through private channels, using personal
connections.
Over the course of investigation,
[@​facutuesca](https://redirect.github.com/facutuesca)[💰](https://redirect.github.com/sponsors/facutuesca)
found and fixed a related underlying cache invalidation bug in
[sigstore/sigstore-python#1838](https://redirect.github.com/sigstore/sigstore-python/pull/1838),
which he then coordinated propagation through the dependency chain
updates in sigstore-python, pypi-attestations, gh-action-pypi-publish
and gh-action-sigstore-python.
Mike's also discovered that Sigstore's Rekor slowdown seems to have
become the main contributing cause of the last week's incident. He's
collected some data to support this claim:
<https://publishing-five-minute-timeout.tiiny.site>.
<center>
<a href="https://xkcd.com/2549/">
<img src="https://imgs.xkcd.com/comics/edge_cake_2x.png" alt="Edge Cake
XKCD feels just like this release">
</a>
</center>
</details>
##### 🫶 New Contributors
- [@​davidbrochart](https://redirect.github.com/davidbrochart)
made their first contribution in
[#​415](https://redirect.github.com/pypa/gh-action-pypi-publish/issues/415)
- [@​takluyver](https://redirect.github.com/takluyver) made their
first contribution in
[#​416](https://redirect.github.com/pypa/gh-action-pypi-publish/issues/416)
**🪞 Full Diff**:
<pypa/gh-action-pypi-publish@v1.14.1...v1.14.2>
**🧔♂️ Release Manager:**
[@​webknjaz](https://redirect.github.com/sponsors/webknjaz)
[🇺🇦](https://stand-with-ukraine.pp.ua)
**🙏 Special Thanks** to
[@​davidbrochart](https://redirect.github.com/davidbrochart)[💰](https://redirect.github.com/sponsors/davidbrochart)
and
[@​Dreamsorcerer](https://redirect.github.com/Dreamsorcerer)[💰](https://redirect.github.com/sponsors/Dreamsorcerer)
for turning my attention (in
[#​415](https://redirect.github.com/pypa/gh-action-pypi-publish/issues/415)
and in private) to the newly surfaced corner case in GitHub's behavior
that only affected a narrow category of projects while many others
remained blissfully unaware.
[@​bdraco](https://redirect.github.com/bdraco)[💰](https://redirect.github.com/sponsors/bdraco)
came up with a DIY sharding workaround for aiohttp that served as a demo
for other projects.
[@​miketheman](https://redirect.github.com/miketheman)[💰](https://redirect.github.com/sponsors/miketheman)
confirmed the Warehouse-side details. Also,
[@​jku](https://redirect.github.com/jku)[💰](https://redirect.github.com/sponsors/jku)
and
[@​woodruffw](https://redirect.github.com/woodruffw)[💰](https://redirect.github.com/sponsors/woodruffw)
helped work through, review and release the Sigstore ecosystem upstream
libs.
**💬 Discuss** [on Bluesky
🦋](https://bsky.app/profile/did:plc:ve6s3mxkefjaxty3m4fdqumn/post/3mrsqy2xba22j),
[on Mastodon
🐘](https://mastodon.social/@​webknjaz/117005132816750073) and [on
GitHub][release discussion].
[![GH Sponsors badge]][GH Sponsors URL]
[GH Sponsors badge]:
https://img.shields.io/badge/%40webknjaz-transparent?logo=githubsponsors&logoColor=%23EA4AAA&label=Sponsor&color=2a313c
[GH Sponsors URL]: https://redirect.github.com/sponsors/webknjaz
[release discussion]:
https://redirect.github.com/pypa/gh-action-pypi-publish/discussions/419
</details>
<details>
<summary>renovatebot/github-action (renovatebot/github-action)</summary>
###
[`v46.2.0`](https://redirect.github.com/renovatebot/github-action/releases/tag/v46.2.0)
[Compare
Source](https://redirect.github.com/renovatebot/github-action/compare/v46.1.21...v46.2.0)
##### Features
- **deps:** Update ghcr.io/renovatebot/renovate Docker tag to v44
([#​1067](https://redirect.github.com/renovatebot/github-action/issues/1067))
([efa6654](https://redirect.github.com/renovatebot/github-action/commit/efa66542b141f41a69921c360bd114828dede0d3))
##### Documentation
- update references to renovatebot/github-action to v46.1.21
([66c62f6](https://redirect.github.com/renovatebot/github-action/commit/66c62f63f2c3421614d095425958eedf3cc04d5e))
##### Miscellaneous Chores
- **deps:** update dependency lint-staged to v17.1.1
([403000c](https://redirect.github.com/renovatebot/github-action/commit/403000c150cbd7d4db2cb878ab66aa42ac6334cb))
- **deps:** update dependency prettier to v3.9.6
([6787cf2](https://redirect.github.com/renovatebot/github-action/commit/6787cf234f64324b859ccc5e114502d2874c3132))
- **deps:** update dependency typescript-eslint to v8.65.0
([656e12f](https://redirect.github.com/renovatebot/github-action/commit/656e12f088834d925552fc033316416ff08e0c64))
##### Continuous Integration
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.283.0
([560e916](https://redirect.github.com/renovatebot/github-action/commit/560e916d9c7cce71747db50c8a0bcc0afe51a1e0))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.284.0
([92c373e](https://redirect.github.com/renovatebot/github-action/commit/92c373e9b7513cd0f5df722cb31278ca5ba5ed90))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.284.1
([b0f9fee](https://redirect.github.com/renovatebot/github-action/commit/b0f9fee8f9e958e395896a25fb03ca676a70d1e2))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.285.0
([bfb9d5d](https://redirect.github.com/renovatebot/github-action/commit/bfb9d5d946fb4cdf47c1cdd6ac1c862f594e9682))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.285.3
([91ba9dc](https://redirect.github.com/renovatebot/github-action/commit/91ba9dcb5bb72c71271fc26c63091ef4cba219f9))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.285.4
([e41061b](https://redirect.github.com/renovatebot/github-action/commit/e41061becfb2ab7ec537b00b7d7551fd58ed22f9))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.285.6
([e8a7a1c](https://redirect.github.com/renovatebot/github-action/commit/e8a7a1cf58613503b896d69e0c35d616370b51d3))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.285.7
([7a22a55](https://redirect.github.com/renovatebot/github-action/commit/7a22a554ffad16018e2fa2f53d38091ba9178177))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.286.0
([7590e1e](https://redirect.github.com/renovatebot/github-action/commit/7590e1eb8e006917e8b8a312ab6f6c254bb796fd))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.286.1
([cae6616](https://redirect.github.com/renovatebot/github-action/commit/cae6616a21e987edd1928b477910d377d07f3c45))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.287.0
([#​1066](https://redirect.github.com/renovatebot/github-action/issues/1066))
([4f87158](https://redirect.github.com/renovatebot/github-action/commit/4f871588a5a0fc837cf0be6ffbad04c212656b37))
###
[`v46.1.21`](https://redirect.github.com/renovatebot/github-action/releases/tag/v46.1.21)
[Compare
Source](https://redirect.github.com/renovatebot/github-action/compare/v46.1.20...v46.1.21)
##### Documentation
- mention that `GITHUB_TOKEN` can be used
([#​1064](https://redirect.github.com/renovatebot/github-action/issues/1064))
([13e8ee8](https://redirect.github.com/renovatebot/github-action/commit/13e8ee89b4e14623621c2cbb1d3728cbb7f66f9e))
- update references to actions/checkout to v6.1.0
([fab6a17](https://redirect.github.com/renovatebot/github-action/commit/fab6a173e5b2f00c44c8afc066eead098667defe))
- update references to renovatebot/github-action to v46.1.20
([9296462](https://redirect.github.com/renovatebot/github-action/commit/92964626c0369295ecfd9ce622a6503fe9a1ee3a))
##### Miscellaneous Chores
- **deps:** update dependency lint-staged to v17.1.0
([f528fd4](https://redirect.github.com/renovatebot/github-action/commit/f528fd49697f048bff3e78beb78e3348c4f1f82b))
- **deps:** update dependency semantic-release to v25.0.7
([8771fb6](https://redirect.github.com/renovatebot/github-action/commit/8771fb6190ee4f69fc2c9fd86380183939af6eba))
- **deps:** update dependency semantic-release to v25.0.8
([9efb0fc](https://redirect.github.com/renovatebot/github-action/commit/9efb0fc3591ad7f115013d3172b03b034ae47791))
- **deps:** update dependency typescript-eslint to v8.64.0
([4eed979](https://redirect.github.com/renovatebot/github-action/commit/4eed9790e9ec35cf9873bb1ad5b36e6c6c0a89e8))
##### Build System
- **deps:** lock file maintenance
([6e7b049](https://redirect.github.com/renovatebot/github-action/commit/6e7b0490db45d668a49b4f30332574e85f9980e4))
##### Continuous Integration
- **deps:** update actions/checkout action to v6.1.0
([c4fc050](https://redirect.github.com/renovatebot/github-action/commit/c4fc0503fed82cbb167925d6d56dedca82430c57))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.272.1
([9355a07](https://redirect.github.com/renovatebot/github-action/commit/9355a07357b9cc52f1b0d7d5c81b3091302078ca))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.272.3
([91aae03](https://redirect.github.com/renovatebot/github-action/commit/91aae033e3159f90ad5e6b2d7e2123ba04f845e7))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.272.4
([be1b582](https://redirect.github.com/renovatebot/github-action/commit/be1b5827263420e16101d4820cc358563ffc3663))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.272.5
([1885f40](https://redirect.github.com/renovatebot/github-action/commit/1885f40b83e6a2b5d4d3b3cf9b7d783c807635f1))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.272.6
([99c53af](https://redirect.github.com/renovatebot/github-action/commit/99c53af241909d290a2386f9a22a70735f9cbbbb))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.272.9
([3946100](https://redirect.github.com/renovatebot/github-action/commit/39461003f609a8744f012ee974560d0f4918341c))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.273.0
([143ca70](https://redirect.github.com/renovatebot/github-action/commit/143ca705453c47f6d7d96d7e2e676d666cfd06d6))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.274.0
([b25398a](https://redirect.github.com/renovatebot/github-action/commit/b25398aa76e4e6b64c791571bdf014f04fc1ba70))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.275.0
([d84cbc1](https://redirect.github.com/renovatebot/github-action/commit/d84cbc1eebc9c39765a20710713a519e221a9f8a))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.275.1
([42a4757](https://redirect.github.com/renovatebot/github-action/commit/42a4757e5ff4b75648e7dc1818e66168a541676f))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.275.2
([f53dbc7](https://redirect.github.com/renovatebot/github-action/commit/f53dbc746dd50b9bb37c7739628307e3368b3dca))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.277.0
([091f8fd](https://redirect.github.com/renovatebot/github-action/commit/091f8fd6eb95dcd983259c82cab4aa460bda72d5))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.277.1
([c5ab157](https://redirect.github.com/renovatebot/github-action/commit/c5ab157131cb61c6d4a734181015e0bb56f79012))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.278.2
([0ffec41](https://redirect.github.com/renovatebot/github-action/commit/0ffec41f725c2d1804e176d71078f9167f3a80aa))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.278.3
([9586883](https://redirect.github.com/renovatebot/github-action/commit/9586883060bd23f5b1cd4df737e8e9ef06a61f73))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.278.4
([a571ddf](https://redirect.github.com/renovatebot/github-action/commit/a571ddf5ed7adf965c5398a1faef20d2112c2c22))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.278.5
([b018556](https://redirect.github.com/renovatebot/github-action/commit/b01855692256f96b03021c0d8d47fa92217e6449))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.279.0
([f5099e2](https://redirect.github.com/renovatebot/github-action/commit/f5099e2e70be84cef5bb45f4b44fb8f68bc09b2b))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.279.1
([0a6a7a9](https://redirect.github.com/renovatebot/github-action/commit/0a6a7a9c0178ff43eccabbee6100982eb7a78715))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.280.0
([c97e3db](https://redirect.github.com/renovatebot/github-action/commit/c97e3db92060fbea1c0e290e6f8f84e4551277be))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.280.2
([b8f0962](https://redirect.github.com/renovatebot/github-action/commit/b8f09624f972544d854ba37c9f122d4964c249f9))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.280.3
([1194ce5](https://redirect.github.com/renovatebot/github-action/commit/1194ce5c21c6ee5e09d02c1dfc7ee1c59b1cac81))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.280.4
([2fbf14d](https://redirect.github.com/renovatebot/github-action/commit/2fbf14d2b8b6b5bcfdd1cb93a50f2b7eaa03be4e))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.280.5
([9f45e34](https://redirect.github.com/renovatebot/github-action/commit/9f45e34eaf443293225c703de5c1190a480938f0))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.281.0
([e1ffcae](https://redirect.github.com/renovatebot/github-action/commit/e1ffcae52591d14f6b2b1ea82d7d817d283e533a))
- **deps:** update ghcr.io/renovatebot/renovate docker tag to v43.281.1
([8ebe465](https://redirect.github.com/renovatebot/github-action/commit/8ebe46564f6dd45291e0a1f4893618e4cf4b32a6))
- **deps:** update ghcr.io/zizmorcore/zizmor docker tag to v1.28.0
([#​1065](https://redirect.github.com/renovatebot/github-action/issues/1065))
([05b68f0](https://redirect.github.com/renovatebot/github-action/commit/05b68f08694f8378ced945d273ef6c57ec4621b7))
- **deps:** update zizmorcore/zizmor-action action to v0.6.1
([344a7d4](https://redirect.github.com/renovatebot/github-action/commit/344a7d44ea46ef8ca656394e569794b6932b867f))
</details>
---
### Configuration
📅 **Schedule**: (in timezone America/New_York)
- Branch creation
- Between 12:00 AM and 08:59 AM, only on Monday (`* 0-8 * * 1`)
- Automerge
- At any time (no schedule defined)
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, 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 has been generated by [Mend
Renovate](https://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNzIuNCIsInVwZGF0ZWRJblZlciI6IjQzLjI3Mi40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZSJdfQ==-->
Co-authored-by: khepri-bot[bot] <269588972+khepri-bot[bot]@users.noreply.github.com>1 parent 84e782e commit b4520eb
3 files changed
Lines changed: 6 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
18 | | - | |
| 18 | + | |
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| |||
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
62 | | - | |
| 62 | + | |
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
| |||
85 | 85 | | |
86 | 86 | | |
87 | 87 | | |
88 | | - | |
| 88 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
| 20 | + | |
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| |||
0 commit comments