We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70e27a4 commit e3494afCopy full SHA for e3494af
.github/workflows/sync-main.yml
@@ -30,9 +30,13 @@ jobs:
30
git fetch upstream --tags --force
31
git merge codeql-cli/latest
32
- name: Setup CodeQL
33
- uses: ./.github/actions/fetch-codeql
34
- with:
35
- channel: 'release'
+ shell: bash
+ run: |
+ gh extension install github/gh-codeql
36
+ gh codeql version
37
+ printf "CODEQL_FETCHED_CODEQL_PATH=" >> "${GITHUB_ENV}"
38
+ gh codeql version --format=json | jq -r .unpackedLocation >> "${GITHUB_ENV}"
39
+ gh codeql version --format=json | jq -r .unpackedLocation >> "${GITHUB_PATH}"
40
- name: Compile PowerShell Queries
41
run: |
42
codeql query compile --check-only --keep-going powershell/ql/src
0 commit comments