File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
src/CodeQLToolkit.Features/Templates/Validation/Actions Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -77,19 +77,21 @@ jobs:
77
77
{% endif %}
78
78
{% raw %}
79
79
- name: Install CodeQL
80
- uses: ./.github/actions/install-codeql
81
- with:
82
- codeql-cli-version: ${{ matrix.codeql_cli }}
83
- codeql-stdlib-version: ${{ matrix.codeql_standard_library }}
84
- add-to-path: true
80
+ id: install-codeql
81
+ shell: bash
82
+ run: |
83
+ echo "Installing CodeQL"
84
+ qlt codeql run install --base example/
85
+ echo "-----------------------------"
86
+ echo "CodeQL Home: $QLT_CODEQL_HOME"
87
+ echo "CodeQL Binary: $QLT_CODEQL_PATH"
85
88
86
89
- name: Verify Versions of Tooling
87
90
shell: bash
88
91
run: |
89
- echo "CodeQL Home: ${{ steps.install-codeql.outputs.codeql-home }}"
90
92
echo -e "Checking CodeQL Version:"
91
- codeql --version
92
-
93
+ $QLT_CODEQL_PATH --version
94
+
93
95
echo -e "Checking QLT Version:"
94
96
echo "QLT Home: ${{ steps.install-qlt.outputs.qlt-home }}"
95
97
qlt version
You can’t perform that action at this time.
0 commit comments