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/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ jobs:
languages: ${{ matrix.language }}

- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
uses: github/codeql-action/analyze@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔴 Mixed CodeQL versions break every scan

When init remains at 4.36.2, analyze 4.37.9 rejects its saved configuration as version-mismatched. Both matrix jobs fail before publishing results.

Prompt for agents
Update all github/codeql-action components in .github/workflows/codeql.yml as one versioned unit. The Initialize CodeQL step still uses commit 8aad20d (v4.36.2), while Perform CodeQL analysis uses cdf488f (v4.37.9). CodeQL init persists its action version in the temporary configuration, and analyze rejects that configuration when its own version differs. Align init and analyze to the same pinned commit, preferably cdf488f for the intended upgrade, and run both language matrix jobs.
Devin Review

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

with:
category: "/language:${{ matrix.language }}"
Loading