Skip to content

build(deps): bump the dependencies group across 46 directories with 13 updates#978

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/dot-github/workflows/dependencies-cea0c628e3
Closed

build(deps): bump the dependencies group across 46 directories with 13 updates#978
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/dot-github/workflows/dependencies-cea0c628e3

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Mar 11, 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, actions-rust-lang/setup-rust-toolchain, peter-evans/create-pull-request, actions/cache, actions/setup-java, 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 1f6f5f6

Commits

Updates actions/upload-artifact from 6.0.0 to 7.0.0

Release notes

Sourced from actions/upload-artifact's releases.

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

Updates github/codeql-action from 4.31.10 to 4.32.6

Release notes

Sourced from github/codeql-action's releases.

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
  • When the CodeQL Action is run with debugging enabled in Default Setup and private package registries are configured, the "Setup proxy for registries" step will output additional diagnostic information that can be used for troubleshooting. #3486
  • Added a setting which allows the CodeQL Action to enable network debugging for Java programs. This will help GitHub staff support customers with troubleshooting issues in GitHub-managed CodeQL workflows, such as Default Setup. This setting can only be enabled by GitHub staff. #3485
  • Added a setting which enables GitHub-managed workflows, such as Default Setup, to use a nightly CodeQL CLI release instead of the latest, stable release that is used by default. This will help GitHub staff support customers whose analyses for a given repository or organization require early access to a change in an upcoming CodeQL CLI release. This setting can only be enabled by GitHub staff. #3484

v4.32.3

  • Added experimental support for testing connections to private package registries. This feature is not currently enabled for any analysis. In the future, it may be enabled by default for Default Setup. #3466

v4.32.2

  • Update default CodeQL bundle version to 2.24.1. #3460

v4.32.1

  • A warning is now shown in Default Setup workflow logs if a private package registry is configured using a GitHub Personal Access Token (PAT), but no username is configured. #3422
  • Fixed a bug which caused the CodeQL Action to fail when repository properties cannot successfully be retrieved. #3421

v4.32.0

  • Update default CodeQL bundle version to 2.24.0. #3425

v4.31.11

  • When running a Default Setup workflow with Actions debugging enabled, the CodeQL Action will now use more unique names when uploading logs from the Dependabot authentication proxy as workflow artifacts. This ensures that the artifact names do not clash between multiple jobs in a build matrix. #3409
  • Improved error handling throughout the CodeQL Action. #3415
  • Added experimental support for automatically excluding generated files from the analysis. This feature is not currently enabled for any analysis. In the future, it may be enabled by default for some GitHub-managed analyses. #3318
  • The changelog extracts that are included with releases of the CodeQL Action are now shorter to avoid duplicated information from appearing in Dependabot PRs. #3403
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]

  • 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

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

4.32.6 - 05 Mar 2026

  • Update default CodeQL bundle version to 2.24.3. #3548

4.32.5 - 02 Mar 2026

  • 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

4.32.4 - 20 Feb 2026

  • 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
  • When the CodeQL Action is run with debugging enabled in Default Setup and private package registries are configured, the "Setup proxy for registries" step will output additional diagnostic information that can be used for troubleshooting. #3486
  • Added a setting which allows the CodeQL Action to enable network debugging for Java programs. This will help GitHub staff support customers with troubleshooting issues in GitHub-managed CodeQL workflows, such as Default Setup. This setting can only be enabled by GitHub staff. #3485
  • Added a setting which enables GitHub-managed workflows, such as Default Setup, to use a nightly CodeQL CLI release instead of the latest, stable release that is used by default. This will help GitHub staff support customers whose analyses for a given repository or organization require early access to a change in an upcoming CodeQL CLI release. This setting can only be enabled by GitHub staff. #3484

4.32.3 - 13 Feb 2026

  • Added experimental support for testing connections to private package registries. This feature is not currently enabled for any analysis. In the future, it may be enabled by default for Default Setup. #3466

4.32.2 - 05 Feb 2026

  • Update default CodeQL bundle version to 2.24.1. #3460

4.32.1 - 02 Feb 2026

  • A warning is now shown in Default Setup workflow logs if a private package registry is configured using a GitHub Personal Access Token (PAT), but no username is configured. #3422
  • Fixed a bug which caused the CodeQL Action to fail when repository properties cannot successfully be retrieved. #3421

... (truncated)

Commits
  • 0d579ff Merge pull request #3551 from github/update-v4.32.6-72d2d850d
  • d4c6be7 Update changelog for v4.32.6
  • 72d2d85 Merge pull request #3548 from github/update-bundle/codeql-bundle-v2.24.3
  • 23f983c Merge pull request #3544 from github/dependabot/github_actions/dot-github/wor...
  • 832e97c Merge pull request #3545 from github/dependabot/github_actions/dot-github/wor...
  • 5ef38c0 Merge pull request #3546 from github/dependabot/npm_and_yarn/tar-7.5.10
  • 80c9cda Add changelog note
  • f2669dd Update default bundle to codeql-bundle-v2.24.3
  • bd03c44 Merge branch 'main' into dependabot/github_actions/dot-github/workflows/actio...
  • 102d762 Bump tar from 7.5.7 to 7.5.10
  • 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 actions-rust-lang/setup-rust-toolchain from 1.15.2 to 1.15.3

Release notes

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

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

[1.12.0] - 2025-04-23

  • Add support for installing rustup on Windows (#58 by @​maennchen) This adds support for using Rust on the GitHub provided Windows ARM runners.

[1.11.0] - 2025-02-24

  • Add new parameter cache-bin that is propagated to Swatinem/rust-cache as cache-bin (#51 by @​enkhjile)
  • Add new parameter cache-shared-key that is propagated to Swatinem/rust-cache as shared-key (#52 by @​skanehira)

... (truncated)

Commits
  • a0b538f Update changelog
  • e0e53f1 Merge pull request #85 from xtqqczze/gitignore
  • a000416 Add .gitignore to exclude test-workspace/target/
  • 806aa7d Add dependabot cooldown
  • b598bed Merge pull request #83 from actions-rust-lang/dependabot/github_actions/Swati...
  • e541adf Bump Swatinem/rust-cache from 2.8.1 to 2.8.2
  • ca4a643 Merge pull request #82 from actions-rust-lang/dependabot/github_actions/actio...
  • c103666 Bump actions/checkout from 5 to 6
  • See full diff in compare view

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

Release notes

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

Create Pull Request v8.1.0

What's Changed

New Contributors

Full Changelog: peter-evans/create-pull-request@v8.0.0...v8.1.0

Commits
  • c0f553f feat: add @​octokit/plugin-retry to handle retriable server errors (#4298)
  • 7000124 fix: Handle remote prune failures gracefully (#4295)
  • 34aa40e build: update distribution (#4289)
  • 641099d build(deps-dev): bump undici from 6.22.0 to 6.23.0 (#4284)
  • 2271f1d build(deps-dev): bump the npm group with 2 updates (#4274)
  • 437c31a build(deps): bump the github-actions group with 2 updates (#4273)
  • 0979079 docs: update readme
  • 5b751cd README.md: bump given GitHub actions to their latest versions (#4265)
  • See full diff in compare view

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

…3 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), [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), [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 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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

Updates `github/codeql-action` from 4.31.10 to 4.32.6
- [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...0d579ff)

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 `actions-rust-lang/setup-rust-toolchain` from 1.15.2 to 1.15.3
- [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...a0b538f)

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

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 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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 `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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

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 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

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

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

Updates `envoyproxy/toolshed` from d109388 to 1f6f5f6
- [Release notes](https://github.com/envoyproxy/toolshed/releases)
- [Commits](https://github.com/envoyproxy/toolshed/commits/1f6f5f6556e990f4f5de36199ad91dc7e5482b03)

---
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: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: github/codeql-action
  dependency-version: 4.32.6
  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: actions-rust-lang/setup-rust-toolchain
  dependency-version: 1.15.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: peter-evans/create-pull-request
  dependency-version: 8.1.0
  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: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/cache
  dependency-version: 5.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/cache
  dependency-version: 5.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  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: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  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: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  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: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/upload-artifact
  dependency-version: 7.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: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  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: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  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: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: actions/upload-artifact
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: envoyproxy/toolshed
  dependency-version: 1f6f5f6
  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 Mar 11, 2026
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Mar 12, 2026

Superseded by #980.

@dependabot dependabot Bot closed this Mar 12, 2026
@dependabot dependabot Bot deleted the dependabot/github_actions/dot-github/workflows/dependencies-cea0c628e3 branch March 12, 2026 23:46
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