mirror of
https://github.com/github/codeql-action.git
synced 2026-04-09 21:52:47 +00:00
Fix lint suggestions
This commit is contained in:
@@ -344,10 +344,16 @@ async function run() {
|
||||
|
||||
if (await features.getValue(Feature.CodeqlJavaLombokEnabled)) {
|
||||
logger.info("Enabling CodeQL Java Lombok support");
|
||||
core.exportVariable("CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS", "true");
|
||||
core.exportVariable(
|
||||
"CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS",
|
||||
"true",
|
||||
);
|
||||
} else {
|
||||
logger.info("Disabling CodeQL Java Lombok support");
|
||||
core.exportVariable("CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS", "false");
|
||||
core.exportVariable(
|
||||
"CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS",
|
||||
"false",
|
||||
);
|
||||
}
|
||||
|
||||
// Disable Python dependency extraction if feature flag set
|
||||
|
||||
Reference in New Issue
Block a user