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 @@ -73,6 +73,6 @@ jobs:
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
uses: github/codeql-action/analyze@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4

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 the CodeQL steps on the same version

In this workflow the init and autobuild steps are still pinned to 8aad20d... (v4.36.2), but this line moves only analyze to f205ea1... (v4.37.4). CodeQL Action validates that the non-init steps load a configuration generated by the same action version, so each scheduled/push/PR CodeQL run will fail at the Analyze step instead of uploading results; update all CodeQL Action steps in this workflow to the same SHA/version.

Useful? React with 👍 / 👎.

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