Update GitHub Actions (major)#177
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
requested review from
a team,
edmundmiller and
maxulysse
as code owners
September 5, 2025 18:01
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
September 7, 2025 04:56
8a7d3d4 to
5cd7517
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
September 23, 2025 22:38
5cd7517 to
f11570c
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
2 times, most recently
from
October 7, 2025 04:47
4630944 to
a9c64a9
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
October 29, 2025 11:48
a9c64a9 to
b1773f2
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
November 8, 2025 20:26
b1773f2 to
9146f85
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
3 times, most recently
from
November 25, 2025 04:33
f8abe62 to
33bad4e
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
4 times, most recently
from
December 6, 2025 20:57
f24d6cc to
96e9238
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
December 15, 2025 13:01
96e9238 to
0cf0ef0
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
January 11, 2026 04:45
0cf0ef0 to
33044ce
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
January 22, 2026 04:58
33044ce to
140cf73
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
2 times, most recently
from
February 5, 2026 01:47
fa458fe to
e8d2f80
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
March 1, 2026 13:01
e8d2f80 to
6583bd8
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
March 9, 2026 11:30
6583bd8 to
4ba03f4
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
2 times, most recently
from
April 10, 2026 01:00
775d5e8 to
78ae972
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
2 times, most recently
from
April 20, 2026 11:24
b5667a5 to
e0eee7d
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
2 times, most recently
from
May 4, 2026 11:16
a6f567d to
ddb1a68
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
May 5, 2026 19:16
ddb1a68 to
e6fffd9
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
4 times, most recently
from
June 2, 2026 19:38
f375398 to
ef35db9
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
June 8, 2026 02:08
ef35db9 to
6a330b5
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
2 times, most recently
from
June 24, 2026 05:40
ca5271f to
4dd267f
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
June 26, 2026 22:15
4dd267f to
35d9510
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
July 7, 2026 19:12
35d9510 to
12dfcfc
Compare
renovate
Bot
force-pushed
the
renovate/major-github-actions
branch
from
July 13, 2026 05:59
12dfcfc to
26b31f0
Compare
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:
v5→v7v7→v9v5→v6v4→v6v6→v7v2→v3Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
actions/checkout (actions/checkout)
v7.0.0Compare Source
v7Compare Source
v6.0.3Compare Source
v6.0.2Compare Source
v6.0.1Compare Source
v6.0.0Compare Source
v6Compare Source
actions/github-script (actions/github-script)
v9.0.0Compare Source
New features:
getOctokitfactory function — Available directly in the script context. Create additional authenticated Octokit clients with different tokens for multi-token workflows, GitHub App tokens, and cross-org access. See Creating additional clients withgetOctokitfor details and examples.ACTIONS_ORCHESTRATION_IDenvironment variable is automatically appended to the user-agent string for request tracing.Breaking changes:
require('@​actions/github')no longer works in scripts. The upgrade to@actions/githubv9 (ESM-only) meansrequire('@​actions/github')will fail at runtime. If you previously used patterns likeconst { getOctokit } = require('@​actions/github')to create secondary clients, use the new injectedgetOctokitfunction instead — it's available directly in the script context with no imports needed.getOctokitis now an injected function parameter. Scripts that declareconst getOctokit = ...orlet getOctokit = ...will get aSyntaxErrorbecause JavaScript does not allowconst/letredeclaration of function parameters. Use the injectedgetOctokitdirectly, or usevar getOctokit = ...if you need to redeclare it.@actions/githubinternals beyond the standardgithub/octokitclient, you may need to update those references for v9 compatibility.What's Changed
New Contributors
Full Changelog: actions/github-script@v8.0.0...v9.0.0
v9Compare Source
v8.0.0Compare Source
v8: .0.0Compare Source
What's Changed
v2.327.1
Release Notes
Make sure your runner is updated to this version or newer to use this release.
New Contributors
Full Changelog: actions/github-script@v7.1.0...v8.0.0
actions/setup-python (actions/setup-python)
v6.3.0Compare Source
What's Changed
Enhancement
Dependency update
Documentation
New Contributors
Full Changelog: actions/setup-python@v6...v6.3.0
v6.2.0Compare Source
What's Changed
Dependency Upgrades
/__tests__/databy @dependabot in #1253 and #1264Full Changelog: actions/setup-python@v6...v6.2.0
v6.1.0Compare Source
What's Changed
Enhancements:
pip-installinput by @gowridurgad in #1201Dependency and Documentation updates:
allow-prereleasesby @yarikoptic in #979New Contributors
Full Changelog: actions/setup-python@v6...v6.1.0
v6.0.0Compare Source
What's Changed
Breaking Changes
Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes
Enhancements:
pip-versionby @priyagupta108 in #1129Bug fixes:
Dependency updates:
New Contributors
Full Changelog: actions/setup-python@v5...v6.0.0
v6Compare Source
aws-actions/configure-aws-credentials (aws-actions/configure-aws-credentials)
v6.2.2Compare Source
v6.2.1Compare Source
Bug Fixes
v6.2.0Compare Source
Features
Bug Fixes
v6.1.3Compare Source
Bug Fixes
v6.1.2Compare Source
Bug Fixes
v6.1.1Compare Source
What's Changed
Full Changelog: aws-actions/configure-aws-credentials@v6...v6.1.1
v6.1.0Compare Source
Features
v6.0.0Compare Source
⚠ BREAKING CHANGES
Features
Bug Fixes
aws-account-idandauthenticated-arnwhen using role-chaining (#1633) (7ceaf96)v6Compare Source
v5.1.1Compare Source
Miscellaneous Chores
v5.1.0Compare Source
Features
Bug Fixes
v5.0.0Compare Source
⚠ BREAKING CHANGES
Features
v5Compare Source
pulumi/actions (pulumi/actions)
v7.0.0Compare Source
What's Changed
New Contributors
Full Changelog: pulumi/actions@v6...v7.0.0
v7Compare Source
softprops/turnstyle (softprops/turnstyle)
v3.3.2Compare Source
Bug fixes 🐛
undicidependency to the patched 6.27.0 release.Other Changes 🔄
Full Changelog:
v3.3.1...v3.3.2v3.3.1Compare Source
Bug fixes 🐛
queue-name, and surface rate-limit throttling in default logs to avoid excessive API usage in busy repositories. Fixes #146v3.3.0Compare Source
Exciting New Features 🎉
retriesinput to retry transient GitHub API 5xx errors with exponential backoff (defaults to 0, preserving the existing no-retry behavior), originally contributed by @mateusz-krainski-revoize in #148 and merged via #150v3.2.4Compare Source
Bug fixes 🐛
v3.2.3Compare Source
maintenance release with updated dependencies
v3.2.2Compare Source
What's Changed
Other Changes 🔄
Full Changelog: softprops/turnstyle@v3.2.1...v3.2.2
v3.2.1Compare Source
maintenance release with updated dependencies
Full Changelog: softprops/turnstyle@v3.2.0...v3.2.1
v3.2.0Compare Source
What's Changed
Exciting New Features 🎉
Other Changes 🔄
Full Changelog: softprops/turnstyle@v3...v3.2.0
v3.1.0Compare Source
What's Changed
Exciting New Features 🎉
New Contributors
Full Changelog: softprops/turnstyle@v3...v3.1.0
v3.0.0Compare Source
Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. Release Notes
v3Compare Source
Configuration
📅 Schedule: (UTC)
🚦 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 if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.