File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -28606,7 +28606,7 @@ async function newCodeQL() {
28606
28606
return {
28607
28607
language: "yaml",
28608
28608
path: await findCodeQL(),
28609
- pack: "githubsecuritylab/actions-all ",
28609
+ pack: "githubsecuritylab/actions-queries ",
28610
28610
suite: `codeql-suites/${core.getInput("suite") || "actions-code-scanning"}.qls`,
28611
28611
source_root: core.getInput("source-root"),
28612
28612
output: core.getInput("sarif"),
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export async function newCodeQL(): Promise<CodeQLConfig> {
24
24
return {
25
25
language : "yaml" ,
26
26
path : await findCodeQL ( ) ,
27
- pack : "githubsecuritylab/actions-all " ,
27
+ pack : "githubsecuritylab/actions-queries " ,
28
28
suite : `codeql-suites/${ core . getInput ( "suite" ) || "actions-code-scanning" } .qls` ,
29
29
source_root : core . getInput ( "source-root" ) ,
30
30
output : core . getInput ( "sarif" ) ,
Original file line number Diff line number Diff line change 52
52
echo "EXTPACK_PATH=./workflow-extpack" >> $GITHUB_ENV
53
53
echo "EXTPACK_NAME=local/workflow-models" >> $GITHUB_ENV
54
54
55
+ - name : Show contents
56
+ shell : bash
57
+ run : |
58
+ echo "Directory contents"
59
+ ls -la
60
+ echo "Models"
61
+ if [ -f workflow-extpack/models.yml ]; then cat workflow-extpack/models.yml; fi
62
+ echo "QLPack"
63
+ if [ -f workflow-extpack/qlpack.yml ]; then cat workflow-extpack/qlpack.yml; fi
64
+
55
65
- name : Scan workflows
56
66
shell : bash
57
67
env :
You can’t perform that action at this time.
0 commit comments