Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,15 @@ updates:
commit-message:
prefix: "ci"
include: "scope"
# Group ALL github-actions bumps into a single PR. Multi-step actions
# (notably github/codeql-action's `init` + `analyze`, which MUST share
# the same version or CodeQL fails "Not all steps use the same version"
# and the SARIF upload errors out) were previously split into separate
# per-step PRs that each carried a version mismatch and could never go
# green. Grouping everything keeps such steps in lockstep. Actions are
# SHA-pinned and gated by the Dependabot Actions Review check, so a
# single combined PR is safe to review as one unit.
groups:
github-actions:
patterns:
- "*"
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha || github.sha }}

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

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