Kotlin: The 2.20.3 release supports Kotlin 2.1.10. by igfoo · Pull Request #2744 · github/codeql-action

Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.

Comments suppressed due to low confidence (2)

src/init-action.ts:547

  • The Kotlin version limit is set to 2.1.20, whereas the title suggests supporting Kotlin 2.1.10. Please confirm which version is correct to avoid confusion or unintended behavior.
core.exportVariable(kotlinLimitVar, "2.1.20");

src/init-action.ts:543

  • This new logic to set a Kotlin version limit depending on CodeQL versions is untested. Please add automated tests verifying that the environment variable is correctly set for CodeQL versions between 2.20.3 and 2.20.4.
if ( (await codeQlVersionAtLeast(codeql, "2.20.3")) && !(await codeQlVersionAtLeast(codeql, "2.20.4")) ) {

Tip: Copilot only keeps its highest confidence comments to reduce noise and keep you focused. Learn more