mirror of
https://github.com/github/codeql-action.git
synced 2026-05-01 19:30:49 +00:00
16 lines
476 B
YAML
16 lines
476 B
YAML
name: "Bundle: From nightly"
|
|
description: "The nightly CodeQL bundle should be used when forced"
|
|
versions:
|
|
- linked # overruled by the FF set below
|
|
steps:
|
|
- id: init
|
|
uses: ./../action/init
|
|
env:
|
|
CODEQL_ACTION_FORCE_NIGHTLY: true
|
|
with:
|
|
tools: ${{ steps.prepare-test.outputs.tools-url }}
|
|
languages: javascript
|
|
- name: Fail if the CodeQL version is not a nightly
|
|
if: ${{ !contains(steps.init.outputs.codeql-version, '+') }}
|
|
run: exit 1
|