Skip to content

chore(deps): bump actions/github-script from 8 to 9 in the utilities group across 1 directory#211

Open
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/github_actions/develop/utilities-556be15a16
Open

chore(deps): bump actions/github-script from 8 to 9 in the utilities group across 1 directory#211
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/github_actions/develop/utilities-556be15a16

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 13, 2026

Bumps the utilities group with 1 update in the / directory: actions/github-script.

Updates actions/github-script from 8 to 9

Release notes

Sourced from actions/github-script's releases.

v9.0.0

New features:

  • getOctokit factory 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 with getOctokit for details and examples.
  • Orchestration ID in user-agent — The ACTIONS_ORCHESTRATION_ID environment 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/github v9 (ESM-only) means require('@actions/github') will fail at runtime. If you previously used patterns like const { getOctokit } = require('@actions/github') to create secondary clients, use the new injected getOctokit function instead — it's available directly in the script context with no imports needed.
  • getOctokit is now an injected function parameter. Scripts that declare const getOctokit = ... or let getOctokit = ... will get a SyntaxError because JavaScript does not allow const/let redeclaration of function parameters. Use the injected getOctokit directly, or use var getOctokit = ... if you need to redeclare it.
  • If your script accesses other @actions/github internals beyond the standard github/octokit client, 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

Commits
  • 3a2844b Merge pull request #700 from actions/salmanmkc/expose-getoctokit + prepare re...
  • ca10bbd fix: use @​octokit/core/types import for v7 compatibility
  • 86e48e2 merge: incorporate main branch changes
  • c108472 chore: rebuild dist for v9 upgrade and getOctokit factory
  • afff112 Merge pull request #712 from actions/salmanmkc/deployment-false + fix user-ag...
  • ff8117e ci: fix user-agent test to handle orchestration ID
  • 81c6b78 ci: use deployment: false to suppress deployment noise from integration tests
  • 3953caf docs: update README examples from @​v8 to @​v9, add getOctokit docs and v9 brea...
  • c17d55b ci: add getOctokit integration test job
  • a047196 test: add getOctokit integration tests via callAsyncFunction
  • Additional commits viewable in compare view

@dependabot dependabot bot added the dependencies Dependency updates (usually opened by Dependabot) label Apr 13, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 13, 2026

Labels

The following labels could not be found: github-actions. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot requested a review from a team as a code owner April 13, 2026 11:57
@dependabot dependabot bot added the dependencies Dependency updates (usually opened by Dependabot) label Apr 13, 2026
@lerian-studio lerian-studio added size/XS PR changes < 50 lines workflow Changes to one or more reusable workflow files typescript Changes to TypeScript or Frontend workflows golang Changes to Go-related workflows and removed dependencies Dependency updates (usually opened by Dependabot) labels Apr 13, 2026
@lerian-studio
Copy link
Copy Markdown

lerian-studio commented Apr 13, 2026

🔍 Lint Analysis

Check Files Scanned Status
YAML Lint 2 file(s) ❌ failure
Action Lint 2 file(s) ❌ failure
Pinned Actions 2 file(s) ❌ failure
Markdown Link Check no changes ⏭️ skipped
Spelling Check 2 file(s) ✅ success
Shell Check 2 file(s) ❌ failure
README Check 2 file(s) ✅ success
Composite Schema no changes ⏭️ skipped
❌ Failures (4)

YAML Lint

.github

  • .github (line 84) — Process completed with exit code 1.

Action Lint

.github/workflows/go-pr-analysis.yml

  • .github/workflows/go-pr-analysis.yml (line 314) — shellcheck reported issue in this script: SC2086:info:7:30: Double quote to prevent globbing and word splitting
  • .github/workflows/go-pr-analysis.yml (line 314) — shellcheck reported issue in this script: SC2086:info:4:29: Double quote to prevent globbing and word splitting
  • .github/workflows/go-pr-analysis.yml (line 314) — shellcheck reported issue in this script: SC2086:info:11:28: Double quote to prevent globbing and word splitting
  • .github/workflows/go-pr-analysis.yml (line 258) — shellcheck reported issue in this script: SC2086:info:7:30: Double quote to prevent globbing and word splitting
  • .github/workflows/go-pr-analysis.yml (line 258) — shellcheck reported issue in this script: SC2086:info:4:29: Double quote to prevent globbing and word splitting
  • .github/workflows/go-pr-analysis.yml (line 258) — shellcheck reported issue in this script: SC2086:info:11:28: Double quote to prevent globbing and word splitting
  • .github/workflows/go-pr-analysis.yml (line 251) — shellcheck reported issue in this script: SC2086:info:2:32: Double quote to prevent globbing and word splitting
  • .github/workflows/go-pr-analysis.yml (line 251) — shellcheck reported issue in this script: SC2046:warning:1:101: Quote this to prevent word splitting
  • .github/workflows/go-pr-analysis.yml (line 112) — shellcheck reported issue in this script: SC2181:style:9:9: Check exit code directly with e.g. 'if mycmd;', not indirectly with $?
  • .github/workflows/go-pr-analysis.yml (line 112) — shellcheck reported issue in this script: SC2086:info:10:34: Double quote to prevent globbing and word splitting

Pinned Actions

.github/workflows/go-pr-analysis.yml

  • .github/workflows/go-pr-analysis.yml (line 479) — External action not pinned by SHA: uses: actions/upload-artifact@v7 (use full commit SHA with a # vX.Y.Z comment)
  • .github/workflows/go-pr-analysis.yml (line 373) — External action not pinned by SHA: uses: actions/setup-go@v6 (use full commit SHA with a # vX.Y.Z comment)
  • .github/workflows/go-pr-analysis.yml (line 370) — External action not pinned by SHA: uses: actions/checkout@v6 (use full commit SHA with a # vX.Y.Z comment)
  • .github/workflows/go-pr-analysis.yml (line 342) — External action not pinned by SHA: uses: github/codeql-action/upload-sarif@v4 (use full commit SHA with a # vX.Y.Z comment)
  • .github/workflows/go-pr-analysis.yml (line 336) — External action not pinned by SHA: uses: securego/gosec@v2.25.0 (use full commit SHA with a # vX.Y.Z comment)
  • .github/workflows/go-pr-analysis.yml (line 299) — External action not pinned by SHA: uses: actions/setup-go@v6 (use full commit SHA with a # vX.Y.Z comment)
  • .github/workflows/go-pr-analysis.yml (line 296) — External action not pinned by SHA: uses: actions/checkout@v6 (use full commit SHA with a # vX.Y.Z comment)
  • .github/workflows/go-pr-analysis.yml (line 238) — External action not pinned by SHA: uses: actions/setup-go@v6 (use full commit SHA with a # vX.Y.Z comment)
  • .github/workflows/go-pr-analysis.yml (line 235) — External action not pinned by SHA: uses: actions/checkout@v6 (use full commit SHA with a # vX.Y.Z comment)
  • .github/workflows/go-pr-analysis.yml (line 105) — External action not pinned by SHA: uses: actions/checkout@v6 (use full commit SHA with a # vX.Y.Z comment)

Shell Check

.github

  • .github (line 132) — Process completed with exit code 1.
  • .github (line 131) — Found 1 shellcheck error(s) in run: blocks.
⚠️ Warnings (1)

Shell Check

.github/workflows/go-pr-analysis.yml

  • .github/workflows/go-pr-analysis.yml — Step "Install golangci-lint" (script line 1): [SC2046] Quote this to prevent word splitting.

🔍 View full scan logs

@lerian-studio
Copy link
Copy Markdown

lerian-studio commented Apr 13, 2026

🛡️ CodeQL Analysis Results

Languages analyzed: actions

✅ No security issues found.


🔍 View full scan logs | 🛡️ Security tab

@bedatty bedatty self-assigned this Apr 13, 2026
Bumps the utilities group with 1 update: [actions/github-script](https://github.com/actions/github-script).


Updates `actions/github-script` from 8 to 9
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v8...v9)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-version: '9'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: utilities
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot changed the title chore(deps): bump actions/github-script from 8 to 9 in the utilities group chore(deps): bump actions/github-script from 8 to 9 in the utilities group across 1 directory Apr 14, 2026
@dependabot dependabot bot force-pushed the dependabot/github_actions/develop/utilities-556be15a16 branch from 720f0a2 to 673012f Compare April 14, 2026 20:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

golang Changes to Go-related workflows size/XS PR changes < 50 lines typescript Changes to TypeScript or Frontend workflows workflow Changes to one or more reusable workflow files

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants