Skip to content

Bump the all-actions group across 1 directory with 16 updates#4854

Open
dependabot[bot] wants to merge 2 commits into
masterfrom
dependabot/github_actions/all-actions-b1bd5a8394
Open

Bump the all-actions group across 1 directory with 16 updates#4854
dependabot[bot] wants to merge 2 commits into
masterfrom
dependabot/github_actions/all-actions-b1bd5a8394

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the all-actions group with 16 updates in the / directory:

Package From To
actions/checkout 2 6
actions/setup-go 3 6
tj-actions/verify-changed-files 17 20
actions/github-script 3 9
azure/setup-helm 3.3 4.3.0
actions/setup-python 3 6
helm/chart-testing-action 2.7.0 2.8.0
helm/kind-action 1.12.0 1.14.0
docker/login-action 2 4
docker/setup-buildx-action 3 4
docker/build-push-action 4 7
goreleaser/goreleaser-action 6 7
rajatjindal/krew-release-bot 0.0.46 0.0.51
actions/setup-node 4 6
docker/setup-docker-action 4 5
actions/upload-artifact 4 7

Updates actions/checkout from 2 to 6

Release notes

Sourced from actions/checkout's releases.

v6.0.0

What's Changed

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

v6-beta

What's Changed

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

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

v5.0.1

What's Changed

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

v5.0.0

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

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

v4.3.1

What's Changed

Full Changelog: actions/checkout@v4...v4.3.1

v4.3.0

What's Changed

... (truncated)

Changelog

Sourced from actions/checkout's changelog.

Changelog

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

v4.2.0

v4.1.7

v4.1.6

... (truncated)

Commits

Updates actions/setup-go from 3 to 6

Release notes

Sourced from actions/setup-go's releases.

v6.0.0

What's Changed

Breaking Changes

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Dependency Upgrades

New Contributors

Full Changelog: actions/setup-go@v5...v6.0.0

v5.6.0

What's Changed

Full Changelog: actions/setup-go@v5...v5.6.0

v5.5.0

What's Changed

Bug fixes:

Dependency updates:

New Contributors

Full Changelog: actions/setup-go@v5...v5.5.0

... (truncated)

Commits

Updates tj-actions/verify-changed-files from 17 to 20

Release notes

Sourced from tj-actions/verify-changed-files's releases.

v20

Changes in v20.0.4

What's Changed

Full Changelog: tj-actions/verify-changed-files@v20...v20.0.4


Changes in v20.0.3

What's Changed

Full Changelog: tj-actions/verify-changed-files@v20...v20.0.3


Changes in v20.0.2

What's Changed

... (truncated)

Changelog

Sourced from tj-actions/verify-changed-files's changelog.

20.0.4 - (2025-03-23)

⬆️ Upgrades

  • Upgraded to v20.0.3 (#470)
  • Upgraded from v20.0.2 -> v20.0.3

  • Update sync-release-version.yml

  • Update README.md

  • Update update-readme.yml

  • Update sync-release-version.yml (a1c6ace) - (Tonye Jack)

20.0.3 - (2025-03-23)

⚙️ Miscellaneous Tasks

⬆️ Upgrades

  • Upgraded from v20.0.1 -> v20.0.2 (#468)

(a661f7f) - (Tonye Jack)

20.0.2 - (2025-03-15)

📦 Bumps

  • Bump actions/checkout from 4.1.4 to 4.1.6 (#430)

Bumps actions/checkout from 4.1.4 to 4.1.6.


updated-dependencies:

  • dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ...

Signed-off-by: dependabot[bot] support@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@​users.noreply.github.com> (a6ccf5c) - (dependabot[bot])

Commits
  • a1c6ace Upgraded to v20.0.3 (#470)
  • 418a055 chore: pin github actions (#469)
  • a661f7f Upgraded from v20.0.1 -> v20.0.2 (#468)
  • 9437562 Deleted renovate.json
  • f7c3c73 chore(deps): update peter-evans/create-pull-request action to v7.0.8 (#466)
  • 4a35708 chore(deps): update peter-evans/create-pull-request action to v7.0.7 (#465)
  • 6b59fb7 chore(deps): update reviewdog/action-shellcheck action to v1.29 (#464)
  • 21026c9 chore(deps): update peter-evans/create-pull-request action to v7.0.6 (#463)
  • dc57d45 chore(deps): update reviewdog/action-shellcheck action to v1.28 (#462)
  • 530d86d chore(deps): update actions/checkout action to v4.2.2
  • Additional commits viewable in compare view

Updates actions/github-script from 3 to 9

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

v8.0.0

What's Changed

⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

New Contributors

Full Changelog: actions/github-script@v7.1.0...v8.0.0

v7.1.0

What's Changed

... (truncated)

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 azure/setup-helm from 3.3 to 3.5

Release notes

Sourced from azure/setup-helm's releases.

v3.5 release

Bump @​actions/core version to remove output warning.

v3.4 release

Improves the querying method to find the latest Helm release. Takes advantage of new GitHub api changes.

Commits

Updates actions/setup-python from 3 to 6

Release notes

Sourced from actions/setup-python's releases.

v6.0.0

What's Changed

Breaking Changes

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Enhancements:

Bug fixes:

Dependency updates:

New Contributors

Full Changelog: actions/setup-python@v5...v6.0.0

v5.6.0

What's Changed

Full Changelog: actions/setup-python@v5...v5.6.0

v5.5.0

What's Changed

Enhancements:

Bug fixes:

... (truncated)

Commits
  • a309ff8 Bump urllib3 from 2.6.0 to 2.6.3 in /tests/data (#1264)
  • bfe8cc5 Upgrade @​actions dependencies to Node 24 compatible versions (#1259)
  • 4f41a90 Bump urllib3 from 2.5.0 to 2.6.0 in /tests/data (#1253)
  • 83679a8 Bump @​types/node from 24.1.0 to 24.9.1 and update macos-13 to macos-15-intel ...
  • bfc4944 Bump prettier from 3.5.3 to 3.6.2 (#1234)
  • 97aeb3e Bump requests from 2.32.2 to 2.32.4 in /tests/data (#1130)
  • 443da59 Bump actions/publish-action from 0.3.0 to 0.4.0 & Documentation update for pi...
  • cfd55ca graalpy: add graalpy early-access and windows builds (#880)
  • bba65e5 Bump typescript from 5.4.2 to 5.9.3 and update docs/advanced-usage.md (#1094)
  • 18566f8 Improve wording and "fix example" (remove 3.13) on testing against pre-releas...
  • Additional commits viewable in compare view

Updates helm/chart-testing-action from 2.7.0 to 2.8.0

Release notes

Sourced from helm/chart-testing-action's releases.

v2.8.0

What's Changed

New Contributors

Full Changelog: helm/chart-testing-action@v2...v2.8.0

Commits
  • 6ec842c Bump sigstore/cosign-installer from 3.8.1 to 4.0.0 (#184)
  • 4ea74f6 Use uv instead of python venv (#172)
  • b0c0606 Bump the actions group across 1 directory with 2 updates (#183)
  • 0bfa5c0 Bump actions/setup-python from 5.4.0 to 6.0.0 (#179)
  • e27de75 Bump actions/checkout from 4.2.2 to 5.0.0 (#181)
  • 2fe8321 bump ct and yamale version (#178)
  • 0941a6b Fix the broken link for GitHub Help Documentation (#174)
  • c71c0c7 Bump the actions group across 1 directory with 4 updates (#171)
  • See full diff in compare view

Updates helm/kind-action from 1.12.0 to 1.14.0

Release notes

Sourced from helm/kind-action's releases.

v1.14.0

What's Changed

New Contributors

Full Changelog: helm/kind-action@v1...v1.14.0

v1.13.0

What's Changed

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels May 20, 2026
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: a786cea388

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread .github/workflows/helm.yaml Outdated

- name: Set up Helm
uses: azure/setup-helm@v4.3.0
uses: azure/setup-helm@v3.5
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Avoid downgrading setup-helm in helm workflow

This change moves azure/setup-helm from v4.3.0 to v3.5 in the Helm CI job, which is a major-version downgrade inside a dependency-bump commit. That reintroduces older action code and drops fixes/features from the previously used v4 line, so the workflow no longer gets the intended dependency update level and may regress over time. Keeping this workflow on the v4 series (or bumping forward) would align with the rest of the upgrade set.

Useful? React with 👍 / 👎.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @dentiny, is this PR opened by #4848? The downgrade looks weird.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let me check

Copy link
Copy Markdown
Contributor

@dentiny dentiny May 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Currently we're using multiple setup-helm versions in the repo, see
image

My guess is, dependabot is not able to resolve the version bump if multiple versions exist for the same "package".
Someone reported a similar issue earlier: dependabot/dependabot-core#14622
I pushed a new commit to this PR, which manually upgrades it to latest, should be good later on.

Comment thread .github/workflows/helm.yaml Outdated
Bumps the all-actions group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `2` | `6` |
| [actions/setup-go](https://github.com/actions/setup-go) | `3` | `6` |
| [tj-actions/verify-changed-files](https://github.com/tj-actions/verify-changed-files) | `17` | `20` |
| [actions/github-script](https://github.com/actions/github-script) | `3` | `9` |
| [azure/setup-helm](https://github.com/azure/setup-helm) | `3.3` | `3.5` |
| [actions/setup-python](https://github.com/actions/setup-python) | `3` | `6` |
| [helm/chart-testing-action](https://github.com/helm/chart-testing-action) | `2.7.0` | `2.8.0` |
| [helm/kind-action](https://github.com/helm/kind-action) | `1.12.0` | `1.14.0` |
| [docker/login-action](https://github.com/docker/login-action) | `2` | `4` |
| [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` |
| [docker/build-push-action](https://github.com/docker/build-push-action) | `4` | `7` |
| [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `6` | `7` |
| [rajatjindal/krew-release-bot](https://github.com/rajatjindal/krew-release-bot) | `0.0.46` | `0.0.51` |
| [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` |
| [docker/setup-docker-action](https://github.com/docker/setup-docker-action) | `4` | `5` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` |



Updates `actions/checkout` from 2 to 6
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v6)

Updates `actions/setup-go` from 3 to 6
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v3...v6)

Updates `tj-actions/verify-changed-files` from 17 to 20
- [Release notes](https://github.com/tj-actions/verify-changed-files/releases)
- [Changelog](https://github.com/tj-actions/verify-changed-files/blob/main/HISTORY.md)
- [Commits](tj-actions/verify-changed-files@v17...v20)

Updates `actions/github-script` from 3 to 9
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v3...v9)

Updates `azure/setup-helm` from 3.3 to 3.5
- [Release notes](https://github.com/azure/setup-helm/releases)
- [Changelog](https://github.com/Azure/setup-helm/blob/main/CHANGELOG.md)
- [Commits](Azure/setup-helm@v3.3...v3.5)

Updates `actions/setup-python` from 3 to 6
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v3...v6)

Updates `helm/chart-testing-action` from 2.7.0 to 2.8.0
- [Release notes](https://github.com/helm/chart-testing-action/releases)
- [Commits](helm/chart-testing-action@v2.7.0...v2.8.0)

Updates `helm/kind-action` from 1.12.0 to 1.14.0
- [Release notes](https://github.com/helm/kind-action/releases)
- [Commits](helm/kind-action@v1.12.0...v1.14.0)

Updates `docker/login-action` from 2 to 4
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@v2...v4)

Updates `docker/setup-buildx-action` from 3 to 4
- [Release notes](https://github.com/docker/setup-buildx-action/releases)
- [Commits](docker/setup-buildx-action@v3...v4)

Updates `docker/build-push-action` from 4 to 7
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v4...v7)

Updates `goreleaser/goreleaser-action` from 6 to 7
- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)
- [Commits](goreleaser/goreleaser-action@v6...v7)

Updates `rajatjindal/krew-release-bot` from 0.0.46 to 0.0.51
- [Release notes](https://github.com/rajatjindal/krew-release-bot/releases)
- [Commits](rajatjindal/krew-release-bot@v0.0.46...v0.0.51)

Updates `actions/setup-node` from 4 to 6
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v4...v6)

Updates `docker/setup-docker-action` from 4 to 5
- [Release notes](https://github.com/docker/setup-docker-action/releases)
- [Commits](docker/setup-docker-action@v4...v5)

Updates `actions/upload-artifact` from 4 to 7
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: actions/github-script
  dependency-version: '9'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: actions/setup-go
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: actions/setup-node
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: actions/setup-python
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: actions/upload-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: azure/setup-helm
  dependency-version: '3.5'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-actions
- dependency-name: docker/build-push-action
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: docker/login-action
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: docker/setup-buildx-action
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: docker/setup-docker-action
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: goreleaser/goreleaser-action
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
- dependency-name: helm/chart-testing-action
  dependency-version: 2.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-actions
- dependency-name: helm/kind-action
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-actions
- dependency-name: rajatjindal/krew-release-bot
  dependency-version: 0.0.51
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-actions
- dependency-name: tj-actions/verify-changed-files
  dependency-version: '20'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the all-actions group with 16 updates Bump the all-actions group across 1 directory with 16 updates May 21, 2026
@dependabot dependabot Bot force-pushed the dependabot/github_actions/all-actions-b1bd5a8394 branch from a786cea to 72b113d Compare May 21, 2026 02:26
@dentiny dentiny requested a review from kevin85421 May 21, 2026 19:15
Copy link
Copy Markdown

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 5697435. Configure here.


- name: Set up Helm
uses: azure/setup-helm@v3.3
uses: azure/setup-helm@v4.3.0
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wrong azure/setup-helm version: v4.3.0 instead of v3.5

Low Severity

The PR description states that azure/setup-helm is being bumped from v3.3 to v3.5 (a minor patch bump), but the actual code changes it to v4.3.0 — a major version jump. While v4.3.0 is a valid release and the explicit version: v3.9.4 pin mitigates the known v4 issue of auto-installing Helm v4.x binaries, this doesn't match the PR's stated intent and could mislead reviewers into thinking this is a safe minor bump.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 5697435. Configure here.

Copy link
Copy Markdown
Contributor

@dentiny dentiny May 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it's intended -- PR description updated to reflect the actual version bump.

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.

2 participants