We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
suite
1 parent 8e5eeb2 commit a9057a7Copy full SHA for a9057a7
.github/action/src/codeql.ts
@@ -25,7 +25,7 @@ export async function newCodeQL(): Promise<CodeQLConfig> {
25
language: "yaml",
26
path: await findCodeQL(),
27
pack: "githubsecuritylab/actions-queries",
28
- suite: "codeql-suites/actions-code-scanning.qls",
+ suite: `codeql-suites/${core.getInput("suite")}.qls`,
29
source_root: core.getInput("source-root"),
30
output: core.getInput("sarif"),
31
};
action.yml
@@ -14,6 +14,10 @@ inputs:
14
description: "SARIF File Output"
15
default: "codeql-actions.sarif"
16
17
+ suite:
18
+ description: "CodeQL Suite to run"
19
+ default: "actions-code-scanning"
20
+
21
runs:
22
using: 'composite'
23
steps:
0 commit comments