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 e2e36b1 commit 4901f54Copy full SHA for 4901f54
src/setup-codeql.ts
@@ -822,6 +822,8 @@ async function getNightlyToolsUrl(logger: Logger) {
822
}
823
824
function isReservedToolsValue(tools: string): boolean {
825
- return CODEQL_BUNDLE_VERSION_ALIAS.includes(tools) ||
826
- CODEQL_NIGHTLY_TOOLS_INPUTS.includes(tools);
+ return (
+ CODEQL_BUNDLE_VERSION_ALIAS.includes(tools) ||
827
+ CODEQL_NIGHTLY_TOOLS_INPUTS.includes(tools)
828
+ );
829
0 commit comments