Skip to content
Open
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.

P0 CodeQL action version mismatch between init and analyze steps

Security scan job will fail at runtime when analyze@v4.35.5 tries to process a CodeQL database created by init@v4.37.1. The analyze step may crash or produce incomplete results, missing security vulnerabilities.

Assertion details
  • Input: Security workflow runs with init@v4.37.1 and analyze@v4.35.5 in sequence
  • Expected: Both init and analyze actions should be at the same version (v4.37.1) to ensure database format and feature compatibility
  • Actual: init bumped to v4.37.1 while analyze remains at v4.35.5, creating incompatible versions released 2 months apart with breaking changes between them

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@7188fc363630916deb702c7fdcf4e481b751f97a # v4.37.1
with:
languages: ${{ matrix.language }}

Expand Down
Loading