We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae6b78 commit a27d3e9Copy full SHA for a27d3e9
src/init-action.ts
@@ -344,10 +344,16 @@ async function run() {
344
345
if (await features.getValue(Feature.CodeqlJavaLombokEnabled)) {
346
logger.info("Enabling CodeQL Java Lombok support");
347
- core.exportVariable("CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS", "true");
+ core.exportVariable(
348
+ "CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS",
349
+ "true",
350
+ );
351
} else {
352
logger.info("Disabling CodeQL Java Lombok support");
- core.exportVariable("CODEQL_EXTRACTOR_JAVA_RUN_ANNOTATION_PROCESSORS", "false");
353
354
355
+ "false",
356
357
}
358
359
// Disable Python dependency extraction if feature flag set
0 commit comments