We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da6a915 commit 96a9c34Copy full SHA for 96a9c34
1 file changed
.github/workflows/codeql-analysis.yml
@@ -16,6 +16,14 @@ jobs:
16
- name: Checkout repository
17
uses: actions/checkout@v2
18
19
+ - name: Fetch CodeQL
20
+ run: |
21
+ LATEST=$(gh release list --repo https://github.com/github/codeql-cli-binaries | cut -f 1 | sort --version-sort | tail -1)
22
+ gh release download --repo https://github.com/github/codeql-cli-binaries --pattern codeql-linux64.zip "$LATEST"
23
+ unzip -q codeql-linux64.zip
24
+ env:
25
+ GITHUB_TOKEN: ${{ github.token }}
26
+
27
- uses: actions/cache@v2
28
with:
29
path: |
@@ -25,7 +33,7 @@ jobs:
33
key: ${{ runner.os }}-qltest-cargo-${{ hashFiles('**/Cargo.lock') }}
34
35
- name: Build Extractor
- run: ./create-extractor-pack.sh
36
+ run: env "PATH=$PATH:${{ github.workspace }}/codeql" ./create-extractor-pack.sh
37
# TODO
30
38
31
39
# analyze:
0 commit comments