Skip to content

Commit dc3f49b

Browse files
githubrobbiclaude
andauthored
ci(deps): bump codeql-action to 4.36.3 and group action bumps (skyllc-ai#536)
Bump github/codeql-action `init` + `analyze` from 4.36.2 to 4.36.3 together. CodeQL requires all `codeql-action` steps to use the same version; Dependabot had opened them as two separate PRs (skyllc-ai#533 init, skyllc-ai#534 analyze), so each branch carried a version mismatch that failed "Not all steps use the same version" and errored on SARIF upload, blocking both. Also add a `groups:` to the github-actions Dependabot config so all action bumps arrive as one PR, keeping multi-step actions in lockstep and preventing this split from recurring. Supersedes skyllc-ai#533 and skyllc-ai#534. Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 4c5acaf commit dc3f49b

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,15 @@ updates:
6565
commit-message:
6666
prefix: "ci"
6767
include: "scope"
68+
# Group ALL github-actions bumps into a single PR. Multi-step actions
69+
# (notably github/codeql-action's `init` + `analyze`, which MUST share
70+
# the same version or CodeQL fails "Not all steps use the same version"
71+
# and the SARIF upload errors out) were previously split into separate
72+
# per-step PRs that each carried a version mismatch and could never go
73+
# green. Grouping everything keeps such steps in lockstep. Actions are
74+
# SHA-pinned and gated by the Dependabot Actions Review check, so a
75+
# single combined PR is safe to review as one unit.
76+
groups:
77+
github-actions:
78+
patterns:
79+
- "*"

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
ref: ${{ github.event.pull_request.head.sha || github.sha }}
139139

140140
- name: Initialize CodeQL
141-
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
141+
uses: github/codeql-action/init@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
142142
with:
143143
languages: ${{ matrix.language }}
144144
# Rust support (public preview) currently only accepts
@@ -153,6 +153,6 @@ jobs:
153153
# queries: security-and-quality
154154

155155
- name: Perform CodeQL analysis
156-
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
156+
uses: github/codeql-action/analyze@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
157157
with:
158158
category: "/language:${{ matrix.language }}"

0 commit comments

Comments
 (0)