build(deps): move every codeql-action to 4.37.7 in one commit (dapper) - #119
Merged
Conversation
Dapper-branch counterpart of the same fix on main. Supersedes #98 and #102, which cannot pass individually and never could. codeql-action requires init, analyze and upload-sarif to run the same version; mixing them fails with "Loaded a configuration file for version X, but running version Y". Dependabot opens one pull request per sub-action, so each of those pull requests creates exactly that mismatch on its own branch. Rebasing cannot help — the conflict is between the change and the rest of the file, not between the branch and its base — and they have to land together to be correct, which two pull requests cannot do. init f205ea1c -> ff2f1c62 analyze f205ea1c -> ff2f1c62 upload-sarif ff2f1c62 (unchanged, already 4.37.7) Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This was referenced Aug 17, 2026
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.
Dapper-branch counterpart of #118. Supersedes #98 and #102.
Targets
dapperand stays ondapper— same change as #118, made separately rather than merged across, so the two branches stay parallel.Why these cannot be separate pull requests
codeql-actionrequiresinit,analyzeandupload-sarifto run the same version. Mixing them fails with:Dependabot opens one pull request per sub-action, so each creates exactly that mismatch on its own branch — #98 moves
initwhileanalyzestays behind, #102 movesanalyzewhileinitstays behind. Rebasing cannot fix either: the conflict is between the change and the rest of the file, not between the branch and its base. They also have to land together to be correct, which two pull requests cannot do.The change
initf205ea1c(4.37.4)ff2f1c62(4.37.7)analyzef205ea1c(4.37.4)ff2f1c62(4.37.7)upload-sarifff2f1c62(4.37.7)Every
codeql-actionreference on this branch is now the one SHA. Tag SHAs verified againstgithub/codeql-actionrather than taken from the pull request titles — #102 is titled 4.37.6, but 4.37.7 is current and4.37.6is5595ccaf, a different commit.🤖 Generated with Claude Code