Skip to content

Bump the github-actions group across 1 directory with 7 updates#64

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-actions-bfd372ba1d
Open

Bump the github-actions group across 1 directory with 7 updates#64
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-actions-bfd372ba1d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 22, 2026

Copy link
Copy Markdown

Bumps the github-actions group with 7 updates in the / directory:

Package From To
tarides/changelog-check-action 3 4
actions/github-script 8.0.0 9.0.0
actions/checkout 4.3.1 7.0.0
actions/setup-node 4.4.0 7.0.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 tarides/changelog-check-action from 3 to 4

Release notes

Sourced from tarides/changelog-check-action's releases.

v4: Update dependencies

What's Changed

New Contributors

Full Changelog: tarides/changelog-check-action@v3...v4

Commits
  • 8f47e0b Merge pull request #12 from peschee/patch-1
  • 46c09cc Update actions/checkout to latest released version
  • 4d6c215 Merge pull request #10 from smorimoto/patch-1
  • aa0aee5 Bump actions/checkout from v4 to v5
  • 509965d Merge pull request #9 from smorimoto/format-action-yml
  • 1c4587f Merge pull request #8 from smorimoto/update-check-sh
  • 332fc4c Format action.yml
  • 79764b8 Format check.sh
  • See full diff in compare view

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 7.0.0

Release notes

Sourced from actions/checkout's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v6.0.3...v7.0.0

v6.1.0

What's Changed

https://github.blog/changelog/2026-06-18-safer-pull_request_target-defaults-for-github-actions-checkout/ for more details about this breaking change

Full Changelog: actions/checkout@v6.0.3...v6.1.0

v6.0.3

What's Changed

New Contributors

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

v6.0.2

What's Changed

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

v6.0.1

What's Changed

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.1

v7.0.0

v6.0.3

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

... (truncated)

Commits

Updates actions/setup-node from 4.4.0 to 7.0.0

Release notes

Sourced from actions/setup-node's releases.

v7.0.0

What's Changed

Enhancements:

Bug fixes:

Documentation updates:

Dependency update:

New Contributors

Full Changelog: actions/setup-node@v6...v7.0.0

v6.5.0

What's Changed

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

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:

... (truncated)

Commits
  • 8207627 Migrate to ESM and upgrade dependencies (#1574)
  • 04be95c Add cache-primary-key and cache-matched-key as outputs (#1577)
  • 7c2c68d docs: Update caching recommendations to mitigate cache poisoning risks (#1567)
  • 6a61c03 Merge pull request #1569 from jasongin/update-actions-cache-5.1.0
  • 30eb73b Resolve high-severity audit issues
  • 4e1a87a Update dist
  • 360237f Strict equality
  • 4f8aac5 Bump @​actions/cache to 5.1.0, log cache write denied
  • f4a67bb Only use mirrorToken in getManifest if it's provided (#1548)
  • 0355742 Remove dummy NODE_AUTH_TOKEN export (#1558)
  • Additional commits viewable in compare view

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 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tarides/changelog-check-action](https://github.com/tarides/changelog-check-action) | `3` | `4` |
| [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` | `7.0.0` |
| [actions/setup-node](https://github.com/actions/setup-node) | `4.4.0` | `7.0.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 `tarides/changelog-check-action` from 3 to 4
- [Release notes](https://github.com/tarides/changelog-check-action/releases)
- [Commits](tarides/changelog-check-action@0189fc7...8f47e0b)

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 7.0.0
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.3.1...9c091bb)

Updates `actions/setup-node` from 4.4.0 to 7.0.0
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@49933ea...8207627)

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: tarides/changelog-check-action
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- 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: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/setup-node
  dependency-version: 7.0.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 Jul 22, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner July 22, 2026 12:05
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jul 22, 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