-
Notifications
You must be signed in to change notification settings - Fork 37
Bump the github-actions group across 1 directory with 4 updates #134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Bump the github-actions group across 1 directory with 4 updates #134
Conversation
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v5...v6) Updates `golangci/golangci-lint-action` from 8.0.0 to 9.2.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8.0.0...v9.2.0) Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...330a01c) Updates `github/codeql-action` from 3.30.8 to 4.31.7 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@755f449...cf1bb45) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-version: 9.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 4.31.7 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR updates four GitHub Actions dependencies across multiple workflow files to their latest major versions. However, there is a critical version inconsistency where actions/checkout is being updated to different versions in different files.
Key changes:
- Updates actions/checkout from v5 to v6 in most workflows (but inconsistently updates to v5.0.1 in security and scorecard workflows)
- Updates golangci/golangci-lint-action from v8.0.0 to v9.2.0 with Node.js 24 support
- Updates actions/upload-artifact from v4.6.2 to v5.0.0 with Node.js 24 support
- Updates github/codeql-action from v3.30.8 to v4.31.7 with updated CodeQL bundle
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/test.yaml | Updates actions/checkout to v6 (correctly) |
| .github/workflows/security.yaml | Updates actions/checkout to v5.0.1 (inconsistent - should be v6), updates codeql-action to v4.31.7, updates upload-artifact to v5.0.0 |
| .github/workflows/scorecard.yml | Updates actions/checkout to v5.0.1 (inconsistent - should be v6), updates codeql-action to v4.31.7, updates upload-artifact to v5.0.0 |
| .github/workflows/publish.yaml | Updates actions/checkout to v6 (correctly) |
| .github/workflows/lint.yaml | Updates actions/checkout to v6 (correctly), updates golangci-lint-action to v9.2.0 |
| .github/workflows/helm.yaml | Updates actions/checkout to v6 (correctly) |
| .github/workflows/build.yaml | Updates actions/checkout to v6 (correctly) |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | ||
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 |
Copilot
AI
Dec 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The actions/checkout action is being updated inconsistently across workflow files. In this file, it's being updated to v5.0.1 (commit 93cb6efe18208431cddfb8368fd83d5badbf9bfd), but in other workflow files (test.yaml, publish.yaml, lint.yaml, helm.yaml, build.yaml), it's being updated to v6. This creates a version inconsistency where different workflows would use different major versions of the same action. All instances should be updated to the same version, preferably v6 as indicated in the PR title and description.
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| uses: actions/checkout@v6 |
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | ||
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 |
Copilot
AI
Dec 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The actions/checkout action is being updated inconsistently across workflow files. In this file, it's being updated to v5.0.1 (commit 93cb6efe18208431cddfb8368fd83d5badbf9bfd), but in other workflow files (test.yaml, publish.yaml, lint.yaml, helm.yaml, build.yaml), it's being updated to v6. This creates a version inconsistency where different workflows would use different major versions of the same action. All instances should be updated to the same version, preferably v6 as indicated in the PR title and description.
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| uses: actions/checkout@v6 # v6 |
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | ||
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 |
Copilot
AI
Dec 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The actions/checkout action is being updated inconsistently across workflow files. In this file, it's being updated to v5.0.1 (commit 93cb6efe18208431cddfb8368fd83d5badbf9bfd), but in other workflow files (test.yaml, publish.yaml, lint.yaml, helm.yaml, build.yaml), it's being updated to v6. This creates a version inconsistency where different workflows would use different major versions of the same action. All instances should be updated to the same version, preferably v6 as indicated in the PR title and description.
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| uses: actions/checkout@v6 |
Bumps the github-actions group with 4 updates in the / directory: actions/checkout, golangci/golangci-lint-action, actions/upload-artifact and github/codeql-action.
Updates
actions/checkoutfrom 5 to 6Release notes
Sourced from actions/checkout's releases.
Commits
8e8c483Clarify v6 README (#2328)033fa0dAdd worktree support for persist-credentials includeIf (#2327)c2d88d3Update all references from v5 and v4 to v6 (#2314)1af3b93update readme/changelog for v6 (#2311)71cf226v6-beta (#2298)069c695Persist creds to a separate file (#2286)ff7abcdUpdate README to include Node.js 24 support details and requirements (#2248)Updates
golangci/golangci-lint-actionfrom 8.0.0 to 9.2.0Release notes
Sourced from golangci/golangci-lint-action's releases.
Commits
1e7e51ebuild(deps): bump yaml from 2.8.1 to 2.8.2 in the dependencies group (#1324)5256ff0build(deps-dev): bump the dev-dependencies group with 3 updates (#1323)13fed6fchore: update workflows7afe8ffchore: update workflows5a92899chore: move samples into fixtures (#1321)aa6fad0feat: add version-file option (#1320)a6071aabuild(deps): bump actions/checkout from 5 to 6 (#1318)6e36c84build(deps-dev): bump the dev-dependencies group with 2 updates (#1317)e7fa5acfeat: automatic module directories (#1315)f3ae99fdocs: organize options (#1314)Updates
actions/upload-artifactfrom 4.6.2 to 5.0.0Release notes
Sourced from actions/upload-artifact's releases.
Commits
330a01cMerge pull request #734 from actions/danwkennedy/prepare-5.0.003f2824Updategithub.dep.yml905a1ecPreparev5.0.02d9f9cdMerge pull request #725 from patrikpolyak/patch-19687587Merge branch 'main' into patch-12848b2cMerge pull request #727 from danwkennedy/patch-19b51177Spell out the first use of GHEScd231caUpdate GHES guidance to include reference to Node 20 versionde65e23Merge pull request #712 from actions/nebuk89-patch-18747d8cUpdate README.mdUpdates
github/codeql-actionfrom 3.30.8 to 4.31.7Release notes
Sourced from github/codeql-action's releases.
... (truncated)
Changelog
Sourced from github/codeql-action's changelog.
... (truncated)
Commits
cf1bb45Merge pull request #3344 from github/update-v4.31.7-f5c63faddf4ebe95Update changelog for v4.31.7f5c63faMerge pull request #3343 from github/update-bundle/codeql-bundle-v2.23.7a2c01e7Add changelog noteac34c13Update default bundle to codeql-bundle-v2.23.7267c467Merge pull request #3339 from github/dependabot/npm_and_yarn/npm-minor-77d264...aeabef7Merge branch 'main' into dependabot/npm_and_yarn/npm-minor-77d26487b078357d3Merge pull request #3341 from github/mbg/ci/update-cs-config-cli-testsd61a6faUpdate CLI config test to account for overlay db changes on PRsce27e95RebuildDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions