We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 797fb30 commit 5a61bf0Copy full SHA for 5a61bf0
src/init-action.ts
@@ -539,6 +539,15 @@ async function run() {
539
core.exportVariable("CODEQL_EXTRACTOR_JAVA_AGENT_DISABLE_KOTLIN", "true");
540
}
541
542
+ const kotlinLimitVar =
543
+ "CODEQL_EXTRACTOR_KOTLIN_OVERRIDE_MAXIMUM_VERSION_LIMIT";
544
+ if (
545
+ (await codeQlVersionAtLeast(codeql, "2.20.3")) &&
546
+ !(await codeQlVersionAtLeast(codeql, "2.20.4"))
547
+ ) {
548
+ core.exportVariable(kotlinLimitVar, "2.1.20");
549
+ }
550
+
551
if (config.languages.includes(Language.cpp)) {
552
const envVar = "CODEQL_EXTRACTOR_CPP_TRAP_CACHING";
553
if (process.env[envVar]) {
0 commit comments