Update GitHub Actions - #631
Open
oep-renovate[bot] wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
43.285.3→44.5.3v4.37.3→v4.37.4v1.14.1→v1.14.2v46.1.21→v46.2.043.285.3→44.5.3Release Notes
renovatebot/renovate (ghcr.io/renovatebot/renovate)
v44.5.3Compare Source
Miscellaneous Chores
Build System
v44.5.2Compare Source
Bug Fixes
Miscellaneous Chores
v44.5.1Compare Source
Miscellaneous Chores
Build System
v44.5.0Compare Source
Features
security:minimumReleaseAgeCratepreset (#44659) (fa7f6ec)v44.4.6Compare Source
Bug Fixes
v44.4.5Compare Source
Bug Fixes
v44.4.4Compare Source
Build System
v44.4.3Compare Source
Build System
v44.4.2Compare Source
Build System
v44.4.1Compare Source
Miscellaneous Chores
Build System
v44.4.0Compare Source
Features
renovateVersion(#44969) (69a6290), closes #44756Bug Fixes
minimumReleaseAgetopinDigestupdates (#44968) (33f5139), closes #44820Documentation
main" (#44963) (9d41668)Miscellaneous Chores
v44.3.3Compare Source
Bug Fixes
v44.3.2Compare Source
Bug Fixes
v44.3.1Compare Source
Bug Fixes
RE2is not in use (#44894) (11a217e)minimumReleaseAgetodigestupdates (#44965) (1247df7)Miscellaneous Chores
Renovate CLIinprFooter(#44949) (10da664)v44.3.0Compare Source
Features
Miscellaneous Chores
v44.2.3Compare Source
Bug Fixes
v44.2.2Compare Source
Bug Fixes
Documentation
Miscellaneous Chores
v44.2.1Compare Source
Build System
v44.2.0Compare Source
Features
v44.1.0Compare Source
Features
Miscellaneous Chores
Continuous Integration
v44.0.1Compare Source
Code Refactoring
Build System
v44.0.0Compare Source
Features
v43.288.0Compare Source
Features
allowedUnsafeExecutions(#44939) (f60995a)v43.287.0Compare Source
Features
Bug Fixes
commitTrailersin platform-native commits (#44918) (d32e38e)Miscellaneous Chores
v43.286.1Compare Source
Bug Fixes
v43.286.0Compare Source
Features
Miscellaneous Chores
Build System
v43.285.7Compare Source
Bug Fixes
Code Refactoring
currentVersionTimestampa Timestamp (#44917) (12f5fde)v43.285.6Compare Source
Bug Fixes
v43.285.5Compare Source
Bug Fixes
sourceUrlfromGOPROXYOrigin(#44902) (feeb236)Documentation
lockFileMaintenanceruns external commands (#44914) (5ffc308)Miscellaneous Chores
Code Refactoring
v43.285.4Compare Source
Build System
github/codeql-action (github/codeql-action)
v4.37.4Compare Source
toolsinput for thecodeql-action/initstep to be specified using agithub-codeql-toolsrepository property. This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value totoolcacheto always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided fortoolsin the workflow definition always takes precedence unless the value of the repository property starts with!. #4037pypa/gh-action-pypi-publish (pypa/gh-action-pypi-publish)
v1.14.2Compare Source
This one probably won't touch you visibly so just bookmark @webknjaz's EuroPython 2026 “AI” slop rant for when it's published on YouTube or encourage him to come back with more to share next year!
🛠️ 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.
🧐 Tell me why..
The rest of the updates bump things related to
pypi-attestationsandsigstore, which has the most interesting backstory here. @facutuesca💰 sent a patch in #417 but a bunch more helped out.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 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💰 found and fixed a related underlying cache invalidation bug in sigstore/sigstore-python#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.
🫶 New Contributors
🪞 Full Diff: pypa/gh-action-pypi-publish@v1.14.1...v1.14.2
🧔♂️ Release Manager: @webknjaz 🇺🇦
🙏 Special Thanks to @davidbrochart💰 and @Dreamsorcerer💰 for turning my attention (in #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💰 came up with a DIY sharding workaround for aiohttp that served as a demo for other projects. @miketheman💰 confirmed the Warehouse-side details. Also, @jku💰 and @woodruffw💰 helped work through, review and release the Sigstore ecosystem upstream libs.
💬 Discuss on Bluesky 🦋, on Mastodon 🐘 and on GitHub.
renovatebot/github-action (renovatebot/github-action)
v46.2.0Compare Source
Features
Documentation
Miscellaneous Chores
Continuous Integration
Configuration
📅 Schedule: (UTC)
* * 1 * *)🚦 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 if that's undesired.
This PR has been generated by Mend Renovate.