Skip to content

Commit 2f5b24c

Browse files
committed
update query vailidation
1 parent 7fe2b9a commit 2f5b24c

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/validate-codeql-queries-cpp.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,24 +58,27 @@ jobs:
5858

5959

6060
- 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"
6669
6770
- name: Verify Versions of Tooling
6871
shell: bash
6972
run: |
70-
echo "CodeQL Home: ${{ steps.install-codeql.outputs.codeql-home }}"
7173
echo -e "Checking CodeQL Version:"
72-
codeql --version
73-
74+
$QLT_CODEQL_PATH --version
75+
7476
echo -e "Checking QLT Version:"
7577
echo "QLT Home: ${{ steps.install-qlt.outputs.qlt-home }}"
7678
qlt version
7779
7880
81+
7982
- name: Install QL Packs
8083
shell: bash
8184
run: |

0 commit comments

Comments
 (0)