Skip to content

Bump the github-actions group with 6 updates#445

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/github-actions-768c8cccec
Open

Bump the github-actions group with 6 updates#445
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/github-actions-768c8cccec

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 7, 2026

Bumps the github-actions group with 6 updates:

Package From To
actions/github-script 8.0.0 9.0.0
actions/checkout 4.3.1 6.0.2
actions/setup-node 4.4.0 6.4.0
martinbeentjes/npm-get-version-action 1.2.3 1.3.1
schwma/parse-changelog-action 1.0.0 1.2.0
ncipollo/release-action 1.20.0 1.21.0

Updates actions/github-script from 8.0.0 to 9.0.0

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

Updates actions/checkout from 4.3.1 to 6.0.2

Release notes

Sourced from actions/checkout's releases.

v6.0.2

What's Changed

Full Changelog: actions/checkout@v6.0.1...v6.0.2

v6.0.1

What's Changed

Full Changelog: actions/checkout@v6...v6.0.1

v6.0.0

What's Changed

Full Changelog: actions/checkout@v5.0.0...v6.0.0

v6-beta

What's Changed

Updated persist-credentials to store the credentials under $RUNNER_TEMP instead of directly in the local git config.

This requires a minimum Actions Runner version of v2.329.0 to access the persisted credentials for Docker container action scenarios.

v5.0.1

What's Changed

Full Changelog: actions/checkout@v5...v5.0.1

v5.0.0

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

v4.2.0

v4.1.7

v4.1.6

... (truncated)

Commits

Updates actions/setup-node from 4.4.0 to 6.4.0

Release notes

Sourced from actions/setup-node's releases.

v6.4.0

What's Changed

Dependency updates:

New Contributors

Full Changelog: actions/setup-node@v6...v6.4.0

v6.3.0

What's Changed

Enhancements:

When using node-version-file: package.json, setup-node now prefers devEngines.runtime over engines.node.

Dependency updates:

Bug fixes:

New Contributors

Full Changelog: actions/setup-node@v6...v6.3.0

v6.2.0

What's Changed

Documentation

Dependency updates:

New Contributors

... (truncated)

Commits

Updates martinbeentjes/npm-get-version-action from 1.2.3 to 1.3.1

Release notes

Sourced from martinbeentjes/npm-get-version-action's releases.

v1.3.1

What's Changed

Full Changelog: martinbeentjes/npm-get-version-action@v1.3.0...v1.3.1

Remove deprecations

What's Changed

New Contributors

Full Changelog: martinbeentjes/npm-get-version-action@v1.2.3...v1.3.0

Commits

Updates schwma/parse-changelog-action from 1.0.0 to 1.2.0

Release notes

Sourced from schwma/parse-changelog-action's releases.

v1.2.0

Changed

  • Workflow now uses node20 for execution since node22 isn't supported yet
Changelog

Sourced from schwma/parse-changelog-action's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Version 1.3.0 - tbd

Added

Changed

Fixed

Removed

Version 1.2.0 - 2024-06-25

Changed

  • Workflow now uses node20 for execution since node22 isn't supported yet

Version 1.1.0 - 2024-06-25

Changed

  • Workflow now uses node22 for execution.

Version 1.0.0 - 2023-02-26

Added

  • version-regex input that defines the regex that is used to match versions from the version input and release titles which are then compared to find a specific release

Changed

  • Non-digit and period characters are no longer stripped from the version input. Instead the version-regex is used.

Version 0.1.0 - 2023-02-25

Added

  • Parsing of changelogs
  • Finding the latest release or supplying a version
  • Parsing the title and body from the release
Commits
  • 1c2b200 Bump version in package.json and package-lock.json
  • 27fa79d Use Actions-R-Us/actions-tagger@v2.1.0-rc5 to allow tagging on push tag event
  • 13fb9a9 Lower workflow node version to node20 since node22 isn't supported
  • 251c7fe Prepare release v1.1.0
  • 29cb6d9 ci: Use Node 22 for action (#1)
  • f4cb4fa Add husky to build staged index on commit
  • 827ad31 Fix default version-regex value in README
  • 3d23e6e Prepare next release
  • 51d7488 Move create major and latest tags to release steps
  • See full diff in compare view

Updates ncipollo/release-action from 1.20.0 to 1.21.0

Release notes

Sourced from ncipollo/release-action's releases.

v1.21.0

What's Changed

Full Changelog: ncipollo/release-action@v1...v1.21.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the github-actions group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/github-script](https://github.com/actions/github-script) | `8.0.0` | `9.0.0` |
| [actions/checkout](https://github.com/actions/checkout) | `4.3.1` | `6.0.2` |
| [actions/setup-node](https://github.com/actions/setup-node) | `4.4.0` | `6.4.0` |
| [martinbeentjes/npm-get-version-action](https://github.com/martinbeentjes/npm-get-version-action) | `1.2.3` | `1.3.1` |
| [schwma/parse-changelog-action](https://github.com/schwma/parse-changelog-action) | `1.0.0` | `1.2.0` |
| [ncipollo/release-action](https://github.com/ncipollo/release-action) | `1.20.0` | `1.21.0` |


Updates `actions/github-script` from 8.0.0 to 9.0.0
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@ed59741...3a2844b)

Updates `actions/checkout` from 4.3.1 to 6.0.2
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.3.1...de0fac2)

Updates `actions/setup-node` from 4.4.0 to 6.4.0
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v4.4.0...48b55a0)

Updates `martinbeentjes/npm-get-version-action` from 1.2.3 to 1.3.1
- [Release notes](https://github.com/martinbeentjes/npm-get-version-action/releases)
- [Commits](martinbeentjes/npm-get-version-action@7aa1d82...3cf2730)

Updates `schwma/parse-changelog-action` from 1.0.0 to 1.2.0
- [Release notes](https://github.com/schwma/parse-changelog-action/releases)
- [Changelog](https://github.com/schwma/parse-changelog-action/blob/main/CHANGELOG.md)
- [Commits](schwma/parse-changelog-action@69a9f9a...1c2b200)

Updates `ncipollo/release-action` from 1.20.0 to 1.21.0
- [Release notes](https://github.com/ncipollo/release-action/releases)
- [Commits](ncipollo/release-action@b7eabc9...339a818)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/setup-node
  dependency-version: 6.4.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: martinbeentjes/npm-get-version-action
  dependency-version: 1.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: schwma/parse-changelog-action
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: ncipollo/release-action
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels May 7, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 7, 2026 09:50
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels May 7, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants