Skip to content

GitHub Action: Update prepare-binaries and validate-kek-updates to use actions/github-script 9, action-gh-release 3#394

Merged
makubacki merged 1 commit into
mainfrom
dependabot/github_actions/all-actions-dependencies-89c825a8b5
Apr 15, 2026
Merged

GitHub Action: Update prepare-binaries and validate-kek-updates to use actions/github-script 9, action-gh-release 3#394
makubacki merged 1 commit into
mainfrom
dependabot/github_actions/all-actions-dependencies-89c825a8b5

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the all-actions-dependencies group with 2 updates in the / directory: softprops/action-gh-release and actions/github-script.

Updates softprops/action-gh-release from 2 to 3

Release notes

Sourced from softprops/action-gh-release's releases.

v3.0.0

3.0.0 is a major release that moves the action runtime from Node 20 to Node 24. Use v3 on GitHub-hosted runners and self-hosted fleets that already support the Node 24 Actions runtime. If you still need the last Node 20-compatible line, stay on v2.6.2.

What's Changed

Other Changes 🔄

  • Move the action runtime and bundle target to Node 24
  • Update @types/node to the Node 24 line and allow future Dependabot updates
  • Keep the floating major tag on v3; v2 remains pinned to the latest 2.x release

v2.6.2

What's Changed

Other Changes 🔄

Full Changelog: softprops/action-gh-release@v2...v2.6.2

v2.6.1

2.6.1 is a patch release focused on restoring linked discussion thread creation when discussion_category_name is set. It fixes [#764](https://github.com/softprops/action-gh-release/issues/764), where the draft-first publish flow stopped carrying the discussion category through the final publish step.

If you still hit an issue after upgrading, please open a report with the bug template and include a minimal repro or sanitized workflow snippet where possible.

What's Changed

Bug fixes 🐛

v2.6.0

2.6.0 is a minor release centered on previous_tag support for generate_release_notes, which lets workflows pin GitHub's comparison base explicitly instead of relying on the default range. It also includes the recent concurrent asset upload recovery fix, a working_directory docs sync, a checked-bundle freshness guard for maintainers, and clearer immutable-prerelease guidance where GitHub platform behavior imposes constraints on how prerelease asset uploads can be published.

If you still hit an issue after upgrading, please open a report with the bug template and include a minimal repro or sanitized workflow snippet where possible.

What's Changed

... (truncated)

Changelog

Sourced from softprops/action-gh-release's changelog.

0.1.13

  • fix issue with multiple runs concatenating release bodies #145
Commits

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 type:dependabot Created by dependabot type:dependencies Pull requests that update a dependency file labels Apr 13, 2026
@apop5
Copy link
Copy Markdown
Collaborator

apop5 commented Apr 14, 2026

@dependbot recreate

@apop5
Copy link
Copy Markdown
Collaborator

apop5 commented Apr 14, 2026

@dependabot recreate

@dependabot dependabot Bot changed the title GitHub Action: Bump the all-actions-dependencies group with 2 updates GitHub Action: Bump the all-actions-dependencies group across 1 directory with 2 updates Apr 15, 2026
@dependabot dependabot Bot force-pushed the dependabot/github_actions/all-actions-dependencies-89c825a8b5 branch from 2eae872 to 07ebadb Compare April 15, 2026 00:14
@apop5 apop5 changed the title GitHub Action: Bump the all-actions-dependencies group across 1 directory with 2 updates GitHub Action: Update prepare-binaries and validate-kek-updates to use actions/github-script 9, action-gh-release 3 Apr 15, 2026
@apop5 apop5 requested review from Flickdm and makubacki April 15, 2026 03:41
@apop5 apop5 enabled auto-merge (squash) April 15, 2026 03:41
Bumps the all-actions-dependencies group with 2 updates: [softprops/action-gh-release](https://github.com/softprops/action-gh-release) and [actions/github-script](https://github.com/actions/github-script).


Updates `softprops/action-gh-release` from 2 to 3
- [Release notes](https://github.com/softprops/action-gh-release/releases)
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md)
- [Commits](softprops/action-gh-release@v2...v3)

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: softprops/action-gh-release
  dependency-version: '3'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions-dependencies
- dependency-name: actions/github-script
  dependency-version: '9'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@makubacki makubacki force-pushed the dependabot/github_actions/all-actions-dependencies-89c825a8b5 branch from 07ebadb to 5fa6778 Compare April 15, 2026 15:24
@makubacki makubacki disabled auto-merge April 15, 2026 15:24
@makubacki makubacki enabled auto-merge (squash) April 15, 2026 15:24
@makubacki makubacki merged commit ddc0d12 into main Apr 15, 2026
3 checks passed
@dependabot dependabot Bot deleted the dependabot/github_actions/all-actions-dependencies-89c825a8b5 branch April 15, 2026 16:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

type:dependabot Created by dependabot type:dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants