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 ce3a194 commit 19e010eCopy full SHA for 19e010e
.github/actions/fetch-codeql/action.yml
@@ -8,7 +8,7 @@ runs:
8
run: |
9
LATEST=$(gh release list --repo https://github.com/github/codeql-cli-binaries | cut -f 1 | grep -v beta | sort --version-sort | tail -1)
10
gh release download --repo https://github.com/github/codeql-cli-binaries --pattern codeql-linux64.zip "$LATEST"
11
- unzip -q codeql-linux64.zip
12
- echo "${{ github.workspace }}/codeql" >> $GITHUB_PATH
+ unzip -q -d "${{ runner.temp }}" codeql-linux64.zip
+ echo "${{ runner.temp }}/codeql" >> $GITHUB_PATH
13
env:
14
GITHUB_TOKEN: ${{ github.token }}
0 commit comments