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 @@ -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@7188fc363630916deb702c7fdcf4e481b751f97a # v4.37.1

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

In this workflow the init and autobuild steps still use v4.36.2 while this line runs analyze from v4.37.1. CodeQL validates that all github/codeql-action steps in a job use the same version; when analyze reads the config written by init, it errors with a version mismatch, so every push/PR/scheduled CodeQL job will fail until the other CodeQL steps are bumped to the same SHA.

Useful? React with 👍 / 👎.

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