Skip to content

Commit

Permalink
Kotlin: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
igfoo committed Aug 24, 2023
1 parent 30fe0c4 commit ff95d14
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/init-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,8 @@ async function run() {
core.exportVariable("CODEQL_EXTRACTOR_JAVA_AGENT_DISABLE_KOTLIN", "true");
}

const kotlinLimitVar = "CODEQL_EXTRACTOR_KOTLIN_OVERRIDE_MAXIMUM_VERSION_LIMIT";
const kotlinLimitVar =
"CODEQL_EXTRACTOR_KOTLIN_OVERRIDE_MAXIMUM_VERSION_LIMIT";
if (await codeQlVersionAbove(codeql, "2.13.4")) {
core.exportVariable(kotlinLimitVar, "1.9.20");
}
Expand Down

0 comments on commit ff95d14

Please sign in to comment.