Skip to content

build(deps): Bump the github-actions-dependencies group across 18 directories with 4 updates#359

Merged
neilime merged 1 commit intomainfrom
dependabot/github_actions/github-actions-dependencies-f0569d9dd4
Apr 10, 2026
Merged

build(deps): Bump the github-actions-dependencies group across 18 directories with 4 updates#359
neilime merged 1 commit intomainfrom
dependabot/github_actions/github-actions-dependencies-f0569d9dd4

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the github-actions-dependencies group with 4 updates in the / directory: actions/github-script, hoverkraft-tech/ci-github-container, hoverkraft-tech/ci-github-container/.github/workflows/docker-build-images.yml and release-drafter/release-drafter.
Bumps the github-actions-dependencies group with 1 update in the /actions/argocd/get-manifest-files directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/check/url-lighthouse directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/check/url-ping directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/argocd-manifest-files directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/get-environment directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/github-pages directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/helm-repository-dispatch directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/jekyll directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/report directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deployment/create directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deployment/delete directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deployment/get-finished directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deployment/read directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/deployment/update directory: actions/github-script.
Bumps the github-actions-dependencies group with 2 updates in the /actions/release/create directory: actions/github-script and release-drafter/release-drafter.
Bumps the github-actions-dependencies group with 1 update in the /actions/release/get-configuration directory: actions/github-script.
Bumps the github-actions-dependencies group with 1 update in the /actions/workflow/get-workflow-failure directory: actions/github-script.

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 hoverkraft-tech/ci-github-container from 0.31.0 to 0.32.0

Release notes

Sourced from hoverkraft-tech/ci-github-container's releases.

0.32.0

Release Summary

A notable public change lands in docker/setup with upgraded BuildKit v0.29.0 and BuildX v0.33.0, improving the container build toolchain. Documentation for actions and workflows was also refreshed to better reflect current usage.

Internal changes are limited to dependency and workflow maintenance across GitHub Actions, npm packages, and Helm-related tooling, with no user-facing fixes included in this release.

Breaking change(s)

There is no breaking change.

What's Changed

Full Changelog: hoverkraft-tech/ci-github-container@0.31.0...0.32.0

Commits
  • bcbbcaf chore(deps): bump hoverkraft-tech/ci-github-publish/.github/workflows/release...
  • 490fe98 chore(deps): bump the npm-dependencies group across 1 directory with 2 updates
  • d2c7c46 chore(deps): bump @​hono/node-server in /actions/helm/generate-docs
  • ab62ee8 chore(deps): bump hono in /actions/helm/generate-docs
  • b59705f chore(deps): bump lodash in /actions/helm/generate-docs
  • 0a5aa1e chore(deps): bump the github-actions-dependencies group across 2 directories ...
  • 1f9ac1e chore(deps): bump int128/docker-build-cache-config-action
  • d3668bd feat(docker/setup): upgrade BuildKit to v0.29.0 and BuildX to v0.33.0
  • 8e29fd1 chore(deps): bump path-to-regexp in /actions/helm/generate-docs
  • 1686e39 chore(deps): bump brace-expansion in /actions/helm/generate-docs
  • Additional commits viewable in compare view

Updates hoverkraft-tech/ci-github-container/.github/workflows/docker-build-images.yml from 0.31.0 to 0.32.0

Release notes

Sourced from hoverkraft-tech/ci-github-container/.github/workflows/docker-build-images.yml's releases.

0.32.0

Release Summary

A notable public change lands in docker/setup with upgraded BuildKit v0.29.0 and BuildX v0.33.0, improving the container build toolchain. Documentation for actions and workflows was also refreshed to better reflect current usage.

Internal changes are limited to dependency and workflow maintenance across GitHub Actions, npm packages, and Helm-related tooling, with no user-facing fixes included in this release.

Breaking change(s)

There is no breaking change.

What's Changed

Full Changelog: hoverkraft-tech/ci-github-container@0.31.0...0.32.0

Commits
  • bcbbcaf chore(deps): bump hoverkraft-tech/ci-github-publish/.github/workflows/release...
  • 490fe98 chore(deps): bump the npm-dependencies group across 1 directory with 2 updates
  • d2c7c46 chore(deps): bump @​hono/node-server in /actions/helm/generate-docs
  • ab62ee8 chore(deps): bump hono in /actions/helm/generate-docs
  • b59705f chore(deps): bump lodash in /actions/helm/generate-docs
  • 0a5aa1e chore(deps): bump the github-actions-dependencies group across 2 directories ...
  • 1f9ac1e chore(deps): bump int128/docker-build-cache-config-action
  • d3668bd feat(docker/setup): upgrade BuildKit to v0.29.0 and BuildX to v0.33.0
  • 8e29fd1 chore(deps): bump path-to-regexp in /actions/helm/generate-docs
  • 1686e39 chore(deps): bump brace-expansion in /actions/helm/generate-docs
  • Additional commits viewable in compare view

Updates release-drafter/release-drafter from 7.1.1 to 7.2.0

Release notes

Sourced from release-drafter/release-drafter's releases.

v7.2.0

What's Changed

New

Bug Fixes

Maintenance

Documentation

Dependency Updates

Full Changelog: release-drafter/release-drafter@v7.1.1...v7.2.0

Commits
  • 5de9358 7.2.0
  • e50d61c chore: rebuild dist
  • d3a61d3 chore: fix npm audit vulnerabilities
  • 8bfa279 build(deps): bump lodash and @​graphql-codegen/plugin-helpers (#1589)
  • c2a8a67 chore: remove engine-strict from .npmrc to fix Dependabot resolution
  • e51e4ad chore(deps): update dependency typescript to 6.0.2 (#1587)
  • 0e7bd54 fix(deps): update dependency @​actions/github to 9.1.0 (#1586)
  • 9c0b0a8 chore(deps): update dependency yaml to 2.8.3 (#1580)
  • b27f820 chore(deps): update vitest to 4.1.4 (#1585)
  • eb90534 ci(deps): update peter-evans/create-pull-request action to v8 (#1588)
  • Additional commits viewable 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/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/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/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/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/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 g...

    Description has been truncated

…ectories with 4 updates

Bumps the github-actions-dependencies group with 4 updates in the / directory: [actions/github-script](https://github.com/actions/github-script), [hoverkraft-tech/ci-github-container](https://github.com/hoverkraft-tech/ci-github-container), [hoverkraft-tech/ci-github-container/.github/workflows/docker-build-images.yml](https://github.com/hoverkraft-tech/ci-github-container) and [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter).
Bumps the github-actions-dependencies group with 1 update in the /actions/argocd/get-manifest-files directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/check/url-lighthouse directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/check/url-ping directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/argocd-manifest-files directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/get-environment directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/github-pages directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/helm-repository-dispatch directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/jekyll directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deploy/report directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deployment/create directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deployment/delete directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deployment/get-finished directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deployment/read directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/deployment/update directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 2 updates in the /actions/release/create directory: [actions/github-script](https://github.com/actions/github-script) and [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter).
Bumps the github-actions-dependencies group with 1 update in the /actions/release/get-configuration directory: [actions/github-script](https://github.com/actions/github-script).
Bumps the github-actions-dependencies group with 1 update in the /actions/workflow/get-workflow-failure directory: [actions/github-script](https://github.com/actions/github-script).


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 `hoverkraft-tech/ci-github-container` from 0.31.0 to 0.32.0
- [Release notes](https://github.com/hoverkraft-tech/ci-github-container/releases)
- [Commits](hoverkraft-tech/ci-github-container@df8b445...bcbbcaf)

Updates `hoverkraft-tech/ci-github-container/.github/workflows/docker-build-images.yml` from 0.31.0 to 0.32.0
- [Release notes](https://github.com/hoverkraft-tech/ci-github-container/releases)
- [Commits](hoverkraft-tech/ci-github-container@df8b445...bcbbcaf)

Updates `release-drafter/release-drafter` from 7.1.1 to 7.2.0
- [Release notes](https://github.com/release-drafter/release-drafter/releases)
- [Commits](release-drafter/release-drafter@139054a...5de9358)

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/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/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/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/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/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/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/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/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/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/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/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/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/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/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 `release-drafter/release-drafter` from 7.1.1 to 7.2.0
- [Release notes](https://github.com/release-drafter/release-drafter/releases)
- [Commits](release-drafter/release-drafter@139054a...5de9358)

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/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)

---
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-dependencies
- dependency-name: hoverkraft-tech/ci-github-container
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions-dependencies
- dependency-name: hoverkraft-tech/ci-github-container/.github/workflows/docker-build-images.yml
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions-dependencies
- dependency-name: release-drafter/release-drafter
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-dependencies
- dependency-name: release-drafter/release-drafter
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions-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-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-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Apr 10, 2026
@github-actions
Copy link
Copy Markdown
Contributor

Hi, thank you for creating your PR, we will check it out very soon

@neilime neilime merged commit 5abe6f4 into main Apr 10, 2026
29 checks passed
@neilime neilime deleted the dependabot/github_actions/github-actions-dependencies-f0569d9dd4 branch April 10, 2026 05:25
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.

1 participant