Group CodeQL action updates in Dependabot - #21
Open
muir wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed: Duplicate groups key ignores CodeQL grouping
- Merged the duplicate
groupskeys undergithub-actionsinto one mapping so bothcodeql-actionandall-dependenciesare applied.
- Merged the duplicate
Or push these changes by commenting:
@cursor push 4b6745b106
Preview (4b6745b106)
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -24,7 +24,6 @@ updates:
codeql-action:
patterns:
- "github/codeql-action*"
- groups:
all-dependencies:
patterns:
- "*"
@@ -24,7 +24,6 @@ updates:
codeql-action:
patterns:
- "github/codeql-action*"
- groups:
all-dependencies:
patterns:
- "*"You can send follow-ups to the cloud agent here.
Reviewed by Cursor Bugbot for commit 88c3ede. Configure here.
| # have to be bumped in a single pull request. | ||
| codeql-action: | ||
| patterns: | ||
| - "github/codeql-action*" |
There was a problem hiding this comment.
Duplicate groups key ignores CodeQL grouping
Medium Severity
The github-actions update defines two sibling groups keys. YAML last-wins parsing discards the first mapping, so the codeql-action group is ignored and Dependabot never applies the intended CodeQL grouping.
Reviewed by Cursor Bugbot for commit 88c3ede. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This PR groups CodeQL action updates in Dependabot to ensure that init/autobuild/analyze steps stay on the same version.
The init, autobuild, and analyze steps must stay on the same version, so they have to be bumped in a single pull request.
This change adds a
groupsconfiguration to.github/dependabot.ymlthat groups allgithub/codeql-action*updates together.Related to: singlestore-labs/events#192
Note
Low Risk
Only changes Dependabot grouping; no runtime or CI workflow logic is modified.
Overview
Adds a Dependabot group for the
github-actionsecosystem so allgithub/codeql-action*bumps land in one PR.That keeps
init,autobuild, andanalyzein.github/workflows/codeql.ymlon the same version instead of split across separate Dependabot updates.Reviewed by Cursor Bugbot for commit 88c3ede. Configure here.