File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -58,24 +58,27 @@ jobs:
58
58
59
59
60
60
- name : Install CodeQL
61
- uses : ./.github/actions/install-codeql
62
- with :
63
- codeql-cli-version : ${{ matrix.codeql_cli }}
64
- codeql-stdlib-version : ${{ matrix.codeql_standard_library }}
65
- add-to-path : true
61
+ id : install-codeql
62
+ shell : bash
63
+ run : |
64
+ echo "Installing CodeQL"
65
+ qlt codeql run install --base example/
66
+ echo "-----------------------------"
67
+ echo "CodeQL Home: $QLT_CODEQL_HOME"
68
+ echo "CodeQL Binary: $QLT_CODEQL_PATH"
66
69
67
70
- name : Verify Versions of Tooling
68
71
shell : bash
69
72
run : |
70
- echo "CodeQL Home: ${{ steps.install-codeql.outputs.codeql-home }}"
71
73
echo -e "Checking CodeQL Version:"
72
- codeql --version
73
-
74
+ $QLT_CODEQL_PATH --version
75
+
74
76
echo -e "Checking QLT Version:"
75
77
echo "QLT Home: ${{ steps.install-qlt.outputs.qlt-home }}"
76
78
qlt version
77
79
78
80
81
+
79
82
- name : Install QL Packs
80
83
shell : bash
81
84
run : |
You can’t perform that action at this time.
0 commit comments