chore(deps): update actions/github-script action to v9 - #384
Open
academy-renovate[bot] wants to merge 1 commit into
Open
chore(deps): update actions/github-script action to v9#384academy-renovate[bot] wants to merge 1 commit into
academy-renovate[bot] wants to merge 1 commit into
Conversation
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
5 times, most recently
from
April 20, 2026 20:59
20f6825 to
bb18548
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
6 times, most recently
from
April 27, 2026 20:18
d9d228d to
337e63a
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
7 times, most recently
from
May 5, 2026 18:23
6bf2e9c to
d61bdbf
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
4 times, most recently
from
May 13, 2026 16:31
702e10c to
8a1de83
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
7 times, most recently
from
May 19, 2026 16:31
320835e to
3c8e903
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
4 times, most recently
from
May 27, 2026 16:44
e47f76f to
cd7b3c2
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
3 times, most recently
from
June 3, 2026 12:12
8773dcc to
e0bcd1c
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
from
June 10, 2026 04:25
e0bcd1c to
ce369d6
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
3 times, most recently
from
June 24, 2026 04:19
a0b3b40 to
c374171
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
2 times, most recently
from
July 15, 2026 03:16
edffb4a to
9a1ec7f
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
2 times, most recently
from
July 29, 2026 03:23
3f1266f to
0e9dfac
Compare
academy-renovate
Bot
force-pushed
the
renovate/actions-github-script-9.x
branch
from
August 5, 2026 03:19
0e9dfac to
5dd5b3d
Compare
|
Preview deployed to https://14616ff1.academy-admin-preview.pages.dev (total size: 3.7M) |
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:
v8→v9Release Notes
actions/github-script (actions/github-script)
v9Compare Source
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
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot (Logs).