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 @@ -50,7 +50,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Update every CodeQL step to the same release

During every CodeQL run, this initializes the database and configuration with v4.37.3, but the autobuild and analyze steps at lines 63 and 76 still execute v4.36.2. These steps exchange configuration and database state and are intended to use one CodeQL Action release; splitting the workflow can make older implementations consume state produced by the newer implementation and also leaves the actual analysis step without the update. Pin all three CodeQL steps to the v4.37.3 SHA, as the preceding CodeQL upgrades in this repository did.

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