mirror of
https://github.com/github/codeql.git
synced 2026-01-26 04:43:00 +01:00
15 lines
408 B
YAML
15 lines
408 B
YAML
name: Fetch CodeQL
|
|
description: Fetches the latest version of CodeQL
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Fetch CodeQL
|
|
shell: bash
|
|
run: |
|
|
gh extension install github/gh-codeql
|
|
gh codeql set-channel nightly
|
|
gh codeql version
|
|
gh codeql version --format=json | jq -r .unpackedLocation >> "${GITHUB_PATH}"
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|