Skip to content

Commit c3e4ed2

Browse files
committed
update template
1 parent 2f5b24c commit c3e4ed2

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

src/CodeQLToolkit.Features/Templates/Validation/Actions/validate-query-metadata.liquid

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,19 +77,21 @@ jobs:
7777
{% endif %}
7878
{% raw %}
7979
- 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"
8588
8689
- name: Verify Versions of Tooling
8790
shell: bash
8891
run: |
89-
echo "CodeQL Home: ${{ steps.install-codeql.outputs.codeql-home }}"
9092
echo -e "Checking CodeQL Version:"
91-
codeql --version
92-
93+
$QLT_CODEQL_PATH --version
94+
9395
echo -e "Checking QLT Version:"
9496
echo "QLT Home: ${{ steps.install-qlt.outputs.qlt-home }}"
9597
qlt version

0 commit comments

Comments
 (0)