Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR fixes the CodeQL security analysis workflow by configuring it to run without building the application. The change removes the explicit autobuild step and instead configures the CodeQL initialization to use "none" build mode, which is appropriate for Python projects that don't require compilation.
Key changes:
- Removed the separate autobuild step from the CodeQL workflow
- Added
build-mode: noneparameter to the CodeQL initialization step
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
|
|
||
| - name: Autobuild | ||
| uses: github/codeql-action/autobuild@v3 | ||
| build-mode: none |
There was a problem hiding this comment.
The indentation for build-mode: none appears inconsistent with the languages: python parameter above it. Both parameters should be aligned under the with: key with the same indentation level.
|
This had nothing to do with CodeQL, I had to remove the old docker build from checks from my ruleset for |
Stop building an image, or waiting for one to be built.