-
Notifications
You must be signed in to change notification settings - Fork 6
ci: bump github/codeql-action/autobuild from 4.37.3 to 4.37.8 #621
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -42,7 +42,7 @@ jobs: | |||||
| languages: go | ||||||
|
|
||||||
| - name: Autobuild | ||||||
| uses: github/codeql-action/autobuild@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 | ||||||
| uses: github/codeql-action/autobuild@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # v4 | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [O-001] 💡 Improvement Opportunity (optional — not required to merge) Benefit: The trailing comment reads
Suggested change
|
||||||
|
|
||||||
| - name: Perform CodeQL Analysis | ||||||
| uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4 | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [F-002] Dependabot has no This line still pins
Moving the three steps to the floating |
||||||
|
|
||||||
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.
[F-001] Merging this bump on its own leaves CodeQL scanning broken on the default branch.
The
initstep (line 40) and theanalyzestep (line 48) stay pinned toe4fba868...(v4.37.3) while this line movesautobuildtodb488dde...(v4.37.8). The CodeQL Action validates that the config file written byinitwas produced by the same version as the step consuming it, and throws when it was not —src/config-utils.ts:The Analyze check on this PR fails for exactly that reason:
The scheduled run on
main, where all three steps sit at matching v4.37.3, passes — so the breakage originates here rather than being pre-existing or environmental. It is also not a token-permission artifact of a bot-authored PR: the failure occurs inside Autobuild, well before any SARIF upload.Because Autobuild aborts before analysis runs, the consequence is not a merely red check — Go code stops being scanned on
mainuntil the pins are realigned.Land all three
github/codeql-action/*pins ondb488ddef3bf6cb639b32c2e9a7c0a7ea8271d28in a single commit instead of merging this path in isolation. Lines 40 and 48 are outside this diff hunk, so they cannot be carried as suggestions here.