Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0

- name: Initialize CodeQL
uses: github/codeql-action/init@9e0d7b8d25671d64c341c19c0152d693099fb5ba # v4.35.5
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P0 CodeQL action version skew: init v4.36.2 incompatible with analyze v4.35.5

CI workflow will fail during the analysis phase when the CodeQL action attempts to process database files with object formats it does not recognize, blocking security scans.

Assertion details
  • Input: Workflow uses github/codeql-action/init@v4.36.2 paired with github/codeql-action/analyze@v4.35.5
  • Expected: All CodeQL actions in a workflow should use compatible versions from the same release series
  • Actual: init@v4.36.2 uses bundle 2.25.6 (released Jun 4, 2026) with SHA-256 Git object support; analyze@v4.35.5 (released May 15, 2026) predates v4.36.0 and lacks SHA-256 support. When init creates a database with SHA-256 objects, analyze cannot parse it.

Was this helpful? React 👍 or 👎
🤖 Datadog Autotest · What is Autotest? · Any feedback? Reach out in #autotest

with:
languages: ${{ matrix.language }}

Expand Down
Loading