Merge branch 'main' into update-bundle/codeql-bundle-v2.14.3

This commit is contained in:
Dave Bartolomeo 2023-08-25 10:54:01 -04:00 committed by GitHub
commit a2d14d32b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
182 changed files with 2870 additions and 5788 deletions

5
lib/init-action.js generated
View file

@ -179,6 +179,11 @@ async function run() {
if (await features.getValue(feature_flags_1.Feature.DisableKotlinAnalysisEnabled)) {
core.exportVariable("CODEQL_EXTRACTOR_JAVA_AGENT_DISABLE_KOTLIN", "true");
}
const kotlinLimitVar = "CODEQL_EXTRACTOR_KOTLIN_OVERRIDE_MAXIMUM_VERSION_LIMIT";
if ((await (0, util_1.codeQlVersionAbove)(codeql, "2.13.4")) &&
!(await (0, util_1.codeQlVersionAbove)(codeql, "2.14.4"))) {
core.exportVariable(kotlinLimitVar, "1.9.20");
}
if (config.languages.includes(languages_1.Language.java)) {
const envVar = "CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS";
if (process.env[envVar]) {

File diff suppressed because one or more lines are too long