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

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Version skew between CodeQL init and analyze actions

CodeQL security scanning workflow may fail at the analyze step if the database format created by v4.36.3 init is incompatible with v4.35.5 analyze, or if CLI version expectations diverge

Assertion details
  • Input: CodeQL workflow with init at v4.36.3 and analyze at v4.35.5, where v4.36.0+ introduced breaking changes requiring CodeQL CLI ≥2.19.4
  • Expected: Both init and analyze actions should be on the same version (v4.36.3) to ensure database format compatibility and consistent CLI expectations
  • Actual: The init action is bumped to v4.36.3 (with breaking change requiring CLI 2.19.4+) while analyze remains at v4.35.5, creating version skew that may cause database incompatibility or analysis failures

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

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@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
with:
languages: ${{ matrix.language }}

Expand Down
Loading