File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -30,20 +30,15 @@ jobs:
30
30
with :
31
31
python-version : 3.8
32
32
- name : Download CodeQL CLI
33
- uses : dsaltares/fetch-gh-release-asset@aa37ae5c44d3c9820bc12fe675e8670ecd93bd1c
34
- with :
35
- repo : " github/codeql-cli-binaries"
36
- version : " latest"
37
- file : " codeql-linux64.zip"
38
- token : ${{ secrets.GITHUB_TOKEN }}
33
+ # Look under the `codeql` directory, as this is where we checked out the `github/codeql` repo
34
+ uses : ./codeql/.github/actions/fetch-codeql
39
35
- name : Unzip CodeQL CLI
40
36
run : unzip -d codeql-cli codeql-linux64.zip
41
37
- name : Build code scanning query list
42
38
run : |
43
- PATH="$PATH:codeql-cli/codeql" python codeql/misc/scripts/generate-code-scanning-query-list.py > code-scanning-query-list.csv
39
+ python codeql/misc/scripts/generate-code-scanning-query-list.py > code-scanning-query-list.csv
44
40
- name : Upload code scanning query list
45
41
uses : actions/upload-artifact@v3
46
42
with :
47
43
name : code-scanning-query-list
48
44
path : code-scanning-query-list.csv
49
-
You can’t perform that action at this time.
0 commit comments