Skip to content
Merged
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/codecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
uses: github/codeql-action/init@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0

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 Badge Keep CodeQL init and analyze on the same version

In this CodeQL job, init now runs action version 4.37.0 while the analyze step below is still pinned to 4.36.3. CodeQL init saves its parsed config with its own action version, and analyze loads that config before analysis and rejects it when the saved version differs from the running action version (getConfig reports “Loaded a configuration file for version ... but running version ...”). Any pull_request run that reaches this job will therefore fail before uploading CodeQL results; update the analyze action to the same SHA/version as init in this change.

Useful? React with 👍 / 👎.

with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand Down
Loading