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/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
uses: github/codeql-action/init@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # v4.37.8

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟡 CodeQL init and analyze steps on mismatched versions

init was bumped to v4.37.8 (codeql.yml) while analyze stays at v4.36.2 (codeql.yml). The CodeQL Action expects both steps to run the same version, so this pairing triggers a version-consistency warning and can cause incompatible behavior between the steps.

Prompt for agents
The Initialize CodeQL step now pins github/codeql-action/init to v4.37.8 (db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28), but the Perform CodeQL analysis step at line 43 still pins github/codeql-action/analyze to v4.36.2 (8aad20d150bbac5944a9f9d289da16a4b0d87c1e). CodeQL expects init and analyze to use the same action version. Bump the analyze step to the matching v4.37.8 SHA so both steps stay in sync.
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

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

Expand Down
Loading