Skip to content

build(deps): bump the dependencies group across 47 directories with 16 updates#1016

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/dot-github/workflows/dependencies-96d2aac683
Open

build(deps): bump the dependencies group across 47 directories with 16 updates#1016
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/dot-github/workflows/dependencies-96d2aac683

Conversation

@dependabot
Copy link
Copy Markdown

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

Updates the requirements on actions/checkout, envoyproxy/toolshed, actions/upload-artifact, github/codeql-action, actions/setup-python, docker/setup-buildx-action, actions/setup-node, pantsbuild/actions, actions-rust-lang/setup-rust-toolchain, peter-evans/create-pull-request, actions/cache, actions/setup-java, nick-fields/retry, actions/github-script, crazy-max/ghaction-import-gpg and actions/download-artifact to permit the latest version.
Updates actions/checkout from 6.0.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

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
  • de0fac2 Fix tag handling: preserve annotations and explicit fetch-tags (#2356)
  • 064fe7f Add orchestration_id to git user-agent when ACTIONS_ORCHESTRATION_ID is set (...
  • See full diff in compare view

Updates envoyproxy/toolshed to 5ad2e9b

Commits

Updates actions/upload-artifact from 6.0.0 to 7.0.1

Release notes

Sourced from actions/upload-artifact's releases.

v7.0.1

What's Changed

Full Changelog: actions/upload-artifact@v7...v7.0.1

v7.0.0

v7 What's new

Direct Uploads

Adds support for uploading single files directly (unzipped). Callers can set the new archive parameter to false to skip zipping the file during upload. Right now, we only support single files. The action will fail if the glob passed resolves to multiple files. The name parameter is also ignored with this setting. Instead, the name of the artifact will be the name of the uploaded file.

ESM

To support new versions of the @actions/* packages, we've upgraded the package to ESM.

What's Changed

New Contributors

Full Changelog: actions/upload-artifact@v6...v7.0.0

Commits
  • 043fb46 Merge pull request #797 from actions/yacaovsnc/update-dependency
  • 634250c Include changes in typespec/ts-http-runtime 0.3.5
  • e454baa Readme: bump all the example versions to v7 (#796)
  • 74fad66 Update the readme with direct upload details (#795)
  • bbbca2d Support direct file uploads (#764)
  • 589182c Upgrade the module to ESM and bump dependencies (#762)
  • 47309c9 Merge pull request #754 from actions/Link-/add-proxy-integration-tests
  • 02a8460 Add proxy integration test
  • See full diff in compare view

Updates github/codeql-action from 4.31.10 to 4.35.2

Release notes

Sourced from github/codeql-action's releases.

v4.35.2

  • The undocumented TRAP cache cleanup feature that could be enabled using the CODEQL_ACTION_CLEANUP_TRAP_CACHES environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the trap-caching: false input to the init Action. #3795
  • The Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. #3789
  • Python analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. #3794
  • Fixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. #3807
  • Update default CodeQL bundle version to 2.25.2. #3823

v4.35.1

v4.35.0

v4.34.1

  • Downgrade default CodeQL bundle version to 2.24.3 due to issues with a small percentage of Actions and JavaScript analyses. #3762

v4.34.0

  • Added an experimental change which disables TRAP caching when improved incremental analysis is enabled, since improved incremental analysis supersedes TRAP caching. This will improve performance and reduce Actions cache usage. We expect to roll this change out to everyone in March. #3569
  • We are rolling out improved incremental analysis to C/C++ analyses that use build mode none. We expect this rollout to be complete by the end of April 2026. #3584
  • Update default CodeQL bundle version to 2.25.0. #3585

v4.33.0

  • Upcoming change: Starting April 2026, the CodeQL Action will skip collecting file coverage information on pull requests to improve analysis performance. File coverage information will still be computed on non-PR analyses. Pull request analyses will log a warning about this upcoming change. #3562

    To opt out of this change:

    • Repositories owned by an organization: Create a custom repository property with the name github-codeql-file-coverage-on-prs and the type "True/false", then set this property to true in the repository's settings. For more information, see Managing custom properties for repositories in your organization. Alternatively, if you are using an advanced setup workflow, you can set the CODEQL_ACTION_FILE_COVERAGE_ON_PRS environment variable to true in your workflow.
    • User-owned repositories using default setup: Switch to an advanced setup workflow and set the CODEQL_ACTION_FILE_COVERAGE_ON_PRS environment variable to true in your workflow.
    • User-owned repositories using advanced setup: Set the CODEQL_ACTION_FILE_COVERAGE_ON_PRS environment variable to true in your workflow.
  • Fixed a bug which caused the CodeQL Action to fail loading repository properties if a "Multi select" repository property was configured for the repository. #3557

  • The CodeQL Action now loads custom repository properties on GitHub Enterprise Server, enabling the customization of features such as github-codeql-disable-overlay that was previously only available on GitHub.com. #3559

  • Once private package registries can be configured with OIDC-based authentication for organizations, the CodeQL Action will now be able to accept such configurations. #3563

  • Fixed the retry mechanism for database uploads. Previously this would fail with the error "Response body object should not be disturbed or locked". #3564

  • A warning is now emitted if the CodeQL Action detects a repository property whose name suggests that it relates to the CodeQL Action, but which is not one of the properties recognised by the current version of the CodeQL Action. #3570

v4.32.6

  • Update default CodeQL bundle version to 2.24.3. #3548

v4.32.5

  • Repositories owned by an organization can now set up the github-codeql-disable-overlay custom repository property to disable improved incremental analysis for CodeQL. First, create a custom repository property with the name github-codeql-disable-overlay and the type "True/false" in the organization's settings. Then in the repository's settings, set this property to true to disable improved incremental analysis. For more information, see Managing custom properties for repositories in your organization. This feature is not yet available on GitHub Enterprise Server. #3507
  • Added an experimental change so that when improved incremental analysis fails on a runner — potentially due to insufficient disk space — the failure is recorded in the Actions cache so that subsequent runs will automatically skip improved incremental analysis until something changes (e.g. a larger runner is provisioned or a new CodeQL version is released). We expect to roll this change out to everyone in March. #3487
  • The minimum memory check for improved incremental analysis is now skipped for CodeQL 2.24.3 and later, which has reduced peak RAM usage. #3515
  • Reduced log levels for best-effort private package registry connection check failures to reduce noise from workflow annotations. #3516
  • Added an experimental change which lowers the minimum disk space requirement for improved incremental analysis, enabling it to run on standard GitHub Actions runners. We expect to roll this change out to everyone in March. #3498
  • Added an experimental change which allows the start-proxy action to resolve the CodeQL CLI version from feature flags instead of using the linked CLI bundle version. We expect to roll this change out to everyone in March. #3512
  • The previously experimental changes from versions 4.32.3, 4.32.4, 3.32.3 and 3.32.4 are now enabled by default. #3503, #3504

v4.32.4

  • Update default CodeQL bundle version to 2.24.2. #3493
  • Added an experimental change which improves how certificates are generated for the authentication proxy that is used by the CodeQL Action in Default Setup when private package registries are configured. This is expected to generate more widely compatible certificates and should have no impact on analyses which are working correctly already. We expect to roll this change out to everyone in February. #3473

... (truncated)

Changelog

Sourced from github/codeql-action's changelog.

CodeQL Action Changelog

See the releases page for the relevant changes to the CodeQL CLI and language packs.

[UNRELEASED]

No user facing changes.

4.35.2 - 15 Apr 2026

  • The undocumented TRAP cache cleanup feature that could be enabled using the CODEQL_ACTION_CLEANUP_TRAP_CACHES environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the trap-caching: false input to the init Action. #3795
  • The Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. #3789
  • Python analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. #3794
  • Fixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. #3807
  • Update default CodeQL bundle version to 2.25.2. #3823

4.35.1 - 27 Mar 2026

4.35.0 - 27 Mar 2026

4.34.1 - 20 Mar 2026

  • Downgrade default CodeQL bundle version to 2.24.3 due to issues with a small percentage of Actions and JavaScript analyses. #3762

4.34.0 - 20 Mar 2026

  • Added an experimental change which disables TRAP caching when improved incremental analysis is enabled, since improved incremental analysis supersedes TRAP caching. This will improve performance and reduce Actions cache usage. We expect to roll this change out to everyone in March. #3569
  • We are rolling out improved incremental analysis to C/C++ analyses that use build mode none. We expect this rollout to be complete by the end of April 2026. #3584
  • Update default CodeQL bundle version to 2.25.0. #3585

4.33.0 - 16 Mar 2026

  • Upcoming change: Starting April 2026, the CodeQL Action will skip collecting file coverage information on pull requests to improve analysis performance. File coverage information will still be computed on non-PR analyses. Pull request analyses will log a warning about this upcoming change. #3562

    To opt out of this change:

    • Repositories owned by an organization: Create a custom repository property with the name github-codeql-file-coverage-on-prs and the type "True/false", then set this property to true in the repository's settings. For more information, see Managing custom properties for repositories in your organization. Alternatively, if you are using an advanced setup workflow, you can set the CODEQL_ACTION_FILE_COVERAGE_ON_PRS environment variable to true in your workflow.
    • User-owned repositories using default setup: Switch to an advanced setup workflow and set the CODEQL_ACTION_FILE_COVERAGE_ON_PRS environment variable to true in your workflow.
    • User-owned repositories using advanced setup: Set the CODEQL_ACTION_FILE_COVERAGE_ON_PRS environment variable to true in your workflow.
  • Fixed a bug which caused the CodeQL Action to fail loading repository properties if a "Multi select" repository property was configured for the repository. #3557

  • The CodeQL Action now loads custom repository properties on GitHub Enterprise Server, enabling the customization of features such as github-codeql-disable-overlay that was previously only available on GitHub.com. #3559

  • Once private package registries can be configured with OIDC-based authentication for organizations, the CodeQL Action will now be able to accept such configurations. #3563

  • Fixed the retry mechanism for database uploads. Previously this would fail with the error "Response body object should not be disturbed or locked". #3564

  • A warning is now emitted if the CodeQL Action detects a repository property whose name suggests that it relates to the CodeQL Action, but which is not one of the properties recognised by the current version of the CodeQL Action. #3570

4.32.6 - 05 Mar 2026

... (truncated)

Commits
  • 95e58e9 Merge pull request #3824 from github/update-v4.35.2-d2e135a73
  • 6f31bfe Update changelog for v4.35.2
  • d2e135a Merge pull request #3823 from github/update-bundle/codeql-bundle-v2.25.2
  • 60abb65 Add changelog note
  • 5a0a562 Update default bundle to codeql-bundle-v2.25.2
  • 6521697 Merge pull request #3820 from github/dependabot/github_actions/dot-github/wor...
  • 3c45af2 Merge pull request #3821 from github/dependabot/npm_and_yarn/npm-minor-345b93...
  • f1c3393 Rebuild
  • 1024fc4 Rebuild
  • 9dd4cfe Bump the npm-minor group across 1 directory with 6 updates
  • Additional commits viewable in compare view

Updates actions/setup-python from 6.1.0 to 6.2.0

Release notes

Sourced from actions/setup-python's releases.

v6.2.0

What's Changed

Dependency Upgrades

Full Changelog: actions/setup-python@v6...v6.2.0

Commits

Updates docker/setup-buildx-action from 3.12.0 to 4.0.0

Release notes

Sourced from docker/setup-buildx-action's releases.

v4.0.0

Full Changelog: docker/setup-buildx-action@v3.12.0...v4.0.0

Commits
  • 4d04d5d Merge pull request #485 from docker/dependabot/npm_and_yarn/docker/actions-to...
  • cd74e05 chore: update generated content
  • eee38ec build(deps): bump @​docker/actions-toolkit from 0.77.0 to 0.79.0
  • 7a83f65 Merge pull request #484 from docker/dependabot/github_actions/docker/setup-qe...
  • a5aa967 Merge pull request #464 from crazy-max/rm-deprecated
  • e73d53f build(deps): bump docker/setup-qemu-action from 3 to 4
  • 28a438e Merge pull request #483 from crazy-max/node24
  • 034e9d3 chore: update generated content
  • b4664d8 remove deprecated inputs/outputs
  • a8257de node 24 as default runtime
  • Additional commits viewable in compare view

Updates actions/setup-node from 6.1.0 to 6.3.0

Release notes

Sourced from actions/setup-node's releases.

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

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

Commits

Updates pantsbuild/actions from 10 to 11

Release notes

Sourced from pantsbuild/actions's releases.

v11

What's Changed

New Contributors

Full Changelog: pantsbuild/actions@v10...v11

Commits
  • 0aaef86 Bump the gha-deps group across 2 directories with 1 update (#43)
  • 5ded7a9 Bump the gha-deps group across 1 directory with 2 updates (#42)
  • 3243739 Added Dependabot and specified looking into sub-dirs (#41)
  • 511e83e suggest consuming a tagged release of init-pants and not main (#39)
  • d1f9021 fix quoting in init-pants action for named-caches-hash: disable (#38)
  • 8d19ebf allow user to disable caching of named caches (#37)
  • 5e4690b init-pants: add working-directory input that gets passed to composite steps...
  • See full diff in compare view

Updates actions-rust-lang/setup-rust-toolchain from 1.15.2 to 1.16.0

Release notes

Sourced from actions-rust-lang/setup-rust-toolchain's releases.

v1.16.0

What's Changed

New Contributors

Full Changelog: actions-rust-lang/setup-rust-toolchain@v1.15.4...v1.16.0

v1.15.4

What's Changed

New Contributors

Full Changelog: actions-rust-lang/setup-rust-toolchain@v1.15.3...v1.15.4

v1.15.3

What's Changed

New Contributors

Full Changelog: actions-rust-lang/setup-rust-toolchain@v1.15.2...v1.15.3

Changelog

Sourced from actions-rust-lang/setup-rust-toolchain'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.

[Unreleased]

[1.16.0] - 2026-04-13

  • Add new parameter cache-save-if that is propagated to Swatinem/rust-cache as save-if (#90 by @​ChanTsune)

[1.15.4] - 2026-03-15

  • Bump Swatinem/rust-cache from 2.8.2 to 2.9.1 (#87 by @​hyperfinitism) This gets rid of the warnings about Node.js 20.

[1.15.3] - 2026-03-01

  • Bump Swatinem/rust-cache from 2.8.1 to 2.8.2

[1.15.2] - 2025-10-04

  • Fix: Run the version detection steps in the selected rust-src-dir directory. This should enable the version selection even without a default toolchain installed. Fixes #74.

[1.15.1] - 2025-09-23

  • Update Swatinem/rust-cache to v2.8.1

[1.15.0] - 2025-09-14

  • Add support for non-root source directory. Accept source code and rust-toolchain.toml file in subdirectories of the repository. Adds a new parameter rust-src-dir that controls the lookup for toolchain files and sets a default value for the cache-workspace input. (#69 by @​Kubaryt)

[1.14.1] - 2025-08-28

[1.14.0] - 2025-08-23

  • Add new parameters cache-all-crates and cache-workspace-crates that are propagated to Swatinem/rust-cache as cache-all-crates and cache-workspace-crates

[1.13.0] - 2025-06-16

  • Add new parameter cache-provider that is propagated to Swatinem/rust-cache as cache-provider (#65 by @​mindrunner)

... (truncated)

Commits
  • 2b1f5e9 Update CHANGELOG for version 1.16.0
  • 9030f3d Merge pull request #90 from ChanTsune/feat/cache-save-if
  • 186b99e feat: add cache-save-if input to propagate save-if to Swatinem/rust-cache
  • d197c15 Merge pull request #88 from ryuapp/chore/update-chekcout-v6-on-readme
  • fa057b4 Update actions/checkout to v6 on README
  • 150fca8 Update CHANGELOG for version 1.15.4
  • aa63f57 Merge pull request #87 from hyperfinitism/deps/bump-rust-cache
  • 229ed07 deps: Bump Swatinem/rust-cache from 2.8.2 to 2.9.1
  • a0b538f Update changelog
  • e0e53f1 Merge pull request #85 from xtqqczze/gitignore
  • Additional commits viewable in compare view

Updates peter-evans/create-pull-request from 8.0.0 to 8.1.1

Release notes

Sourced from peter-evans/create-pull-request's releases.

Create Pull Request v8.1.1

What's Changed

…6 updates

Updates the requirements on [actions/checkout](https://github.com/actions/checkout), [envoyproxy/toolshed](https://github.com/envoyproxy/toolshed), [actions/upload-artifact](https://github.com/actions/upload-artifact), [github/codeql-action](https://github.com/github/codeql-action), [actions/setup-python](https://github.com/actions/setup-python), [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action), [actions/setup-node](https://github.com/actions/setup-node), [pantsbuild/actions](https://github.com/pantsbuild/actions), [actions-rust-lang/setup-rust-toolchain](https://github.com/actions-rust-lang/setup-rust-toolchain), [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request), [actions/cache](https://github.com/actions/cache), [actions/setup-java](https://github.com/actions/setup-java), [nick-fields/retry](https://github.com/nick-fields/retry), [actions/github-script](https://github.com/actions/github-script), [crazy-max/ghaction-import-gpg](https://github.com/crazy-max/ghaction-import-gpg) and [actions/download-artifact](https://github.com/actions/download-artifact) to permit the latest version.

Updates `actions/checkout` from 6.0.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@8e8c483...de0fac2)

Updates `envoyproxy/toolshed` to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `actions/upload-artifact` from 6.0.0 to 7.0.1
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@b7c566a...043fb46)

Updates `github/codeql-action` from 4.31.10 to 4.35.2
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](github/codeql-action@cdefb33...95e58e9)

Updates `actions/setup-python` from 6.1.0 to 6.2.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@83679a8...a309ff8)

Updates `docker/setup-buildx-action` from 3.12.0 to 4.0.0
- [Release notes](https://github.com/docker/setup-buildx-action/releases)
- [Commits](docker/setup-buildx-action@8d2750c...4d04d5d)

Updates `actions/setup-node` from 6.1.0 to 6.3.0
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@395ad32...53b8394)

Updates `pantsbuild/actions` from 10 to 11
- [Release notes](https://github.com/pantsbuild/actions/releases)
- [Commits](pantsbuild/actions@ab36215...0aaef86)

Updates `actions-rust-lang/setup-rust-toolchain` from 1.15.2 to 1.16.0
- [Release notes](https://github.com/actions-rust-lang/setup-rust-toolchain/releases)
- [Changelog](https://github.com/actions-rust-lang/setup-rust-toolchain/blob/main/CHANGELOG.md)
- [Commits](actions-rust-lang/setup-rust-toolchain@1780873...2b1f5e9)

Updates `peter-evans/create-pull-request` from 8.0.0 to 8.1.1
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](peter-evans/create-pull-request@98357b1...5f6978f)

Updates `actions/checkout` from 6.0.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@8e8c483...de0fac2)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `actions/cache` from 5.0.1 to 5.0.5
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@9255dc7...27d5ce7)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `actions/cache` from 5.0.1 to 5.0.5
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@9255dc7...27d5ce7)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `actions/setup-java` from 5.1.0 to 5.2.0
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](actions/setup-java@f2beeb2...be666c2)

Updates `nick-fields/retry` from 3.0.2 to 4.0.0
- [Release notes](https://github.com/nick-fields/retry/releases)
- [Commits](nick-fields/retry@ce71cc2...ad98453)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `actions/setup-python` from 6.1.0 to 6.2.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@83679a8...a309ff8)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

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 6.0.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@8e8c483...de0fac2)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `actions/upload-artifact` from 6.0.0 to 7.0.1
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@b7c566a...043fb46)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `actions/upload-artifact` from 6.0.0 to 7.0.1
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@b7c566a...043fb46)

Updates `actions/checkout` from 6.0.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@8e8c483...de0fac2)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `crazy-max/ghaction-import-gpg` from 6.3.0 to 7.0.0
- [Release notes](https://github.com/crazy-max/ghaction-import-gpg/releases)
- [Commits](crazy-max/ghaction-import-gpg@e89d409...2dc316d)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `actions/download-artifact` from 7.0.0 to 8.0.1
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@37930b1...3e5f45b)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `actions/upload-artifact` from 6.0.0 to 7.0.1
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@b7c566a...043fb46)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

Updates `envoyproxy/toolshed` from d109388 to 5ad2e9b
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/5ad2e9bddabad409b4afb5501d266292c9e88d40)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: github/codeql-action
  dependency-version: 4.35.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: actions/setup-python
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: docker/setup-buildx-action
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: actions/setup-node
  dependency-version: 6.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pantsbuild/actions
  dependency-version: '11'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: actions-rust-lang/setup-rust-toolchain
  dependency-version: 1.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: peter-evans/create-pull-request
  dependency-version: 8.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/cache
  dependency-version: 5.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/cache
  dependency-version: 5.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/setup-java
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: nick-fields/retry
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/setup-python
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/github-script
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: crazy-max/ghaction-import-gpg
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/download-artifact
  dependency-version: 8.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 5ad2e9b
  dependency-type: direct:production
  dependency-group: dependencies
...

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 Apr 15, 2026
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Apr 17, 2026

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

1 similar comment
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Apr 18, 2026

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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