File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -30,20 +30,14 @@ 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
+ uses : ./codeql/.github/actions/fetch-codeql
39
34
- name : Unzip CodeQL CLI
40
35
run : unzip -d codeql-cli codeql-linux64.zip
41
36
- name : Build code scanning query list
42
37
run : |
43
- PATH="$PATH:codeql-cli/codeql" python codeql/misc/scripts/generate-code-scanning-query-list.py > code-scanning-query-list.csv
38
+ python codeql/misc/scripts/generate-code-scanning-query-list.py > code-scanning-query-list.csv
44
39
- name : Upload code scanning query list
45
40
uses : actions/upload-artifact@v3
46
41
with :
47
42
name : code-scanning-query-list
48
43
path : code-scanning-query-list.csv
49
-
You can’t perform that action at this time.
0 commit comments