-
Notifications
You must be signed in to change notification settings - Fork 0
Create Advanced Security Initialize CodeQL v1 #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mr-adonis-jimenez
wants to merge
1
commit into
main
Choose a base branch
from
mr-adonis-jimenez-patch-14
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| # Advanced Security Initialize CodeQL v1 | ||
| # Initializes the CodeQL database in preparation for building. | ||
| - task: AdvancedSecurity-Codeql-Init@1 | ||
| inputs: | ||
| #enableAutomaticCodeQLInstall: false # boolean. Enable automatic CodeQL detection and installation. Default: false. | ||
| #languages: # 'csharp' | 'cpp' | 'go' | 'java' | 'javascript' | 'python' | 'ruby' | 'swift'. Languages to analyze. | ||
| #querysuite: 'Select a query suite...' # 'Select a query suite...' | 'code-scanning' | 'security-extended' | 'security-experimental' | 'security-and-quality'. CodeQL Query Suite to use for analysis. Default: Select a query suite.... | ||
| #buildtype: 'Manual' # 'Manual' | 'None'. Select build mode (manual vs none). Default: Manual. | ||
| # Advanced | ||
| #ram: # string. Options to control RAM usage in MB. | ||
| #threads: # string. Use this many threads to evaluate queries. | ||
| #codeqlpathstoignore: # string. Set a list of paths to exclude in the CodeQL analysis. | ||
| #codeqlpathstoinclude: # string. Set a list of additional paths to include in the CodeQL analysis. | ||
| #sourcesfolder: # string. Sets the folder that contains the sources to be analyzed. | ||
| #loglevel: '_' # '0' | '1' | '2' | '_'. Set the log level for the CodeQL analysis. Default: _. | ||
| #configfilepath: # string. Use this to enable custom query analysis in codeql (path must be absolute). | ||
| #codeqltoolsdirectory: # string. Set a custom CodeQL tools directory (path must be absolute). | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file sits under
.github/workflows, but it is not a valid GitHub Actions workflow: it has no top‑levelon:orjobs:keys and instead starts with an Azure Pipelines- task:stanza. GitHub Actions will ignore invalid workflow files (and, in practice, only loads properly structured.yml/.yamlworkflows), so the CodeQL initialization you intend never runs and no security scanning is performed.Useful? React with 👍 / 👎.