Skip to content

Commit 19e010e

Browse files
committed
fetch-codeql action: unzip in runner.temp
1 parent ce3a194 commit 19e010e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/fetch-codeql/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ runs:
88
run: |
99
LATEST=$(gh release list --repo https://github.com/github/codeql-cli-binaries | cut -f 1 | grep -v beta | sort --version-sort | tail -1)
1010
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
11+
unzip -q -d "${{ runner.temp }}" codeql-linux64.zip
12+
echo "${{ runner.temp }}/codeql" >> $GITHUB_PATH
1313
env:
1414
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)