Skip to content

Commit

Permalink
Disable CodeQL autobuild in GitHub Actions workflow
Browse files Browse the repository at this point in the history
Updated the `autobuild` setting to `false` in the CodeQL workflow configuration. This prevents automatic building and allows more control over the build process during analysis.
  • Loading branch information
devk0n committed Feb 11, 2025
1 parent aed036c commit 5f917f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: github/codeql-action/init@v2
with:
languages: cpp
autobuild: true # Disable automatic building
autobuild: false # Disable automatic building

- name: Install dependencies
run: |
Expand Down

0 comments on commit 5f917f7

Please sign in to comment.