mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
26 lines
835 B
TypeScript
26 lines
835 B
TypeScript
import * as core from "@actions/core";
|
|
|
|
import * as actionsUtil from "./actions-util";
|
|
import { getConfig } from "./config-utils";
|
|
import { getActionsLogger } from "./logging";
|
|
|
|
export async function run(uploadSarifDebugArtifact: Function) {
|
|
const logger = getActionsLogger();
|
|
|
|
const config = await getConfig(actionsUtil.getTemporaryDirectory(), logger);
|
|
if (config === undefined) {
|
|
throw new Error(
|
|
"Config file could not be found at expected location. Did the 'init' action fail to start?",
|
|
);
|
|
}
|
|
|
|
// Upload Actions SARIF artifacts for debugging
|
|
if (config?.debugMode) {
|
|
core.info(
|
|
"Debug mode is on. Uploading available SARIF files as Actions debugging artifact...",
|
|
);
|
|
const outputDir = actionsUtil.getRequiredInput("output");
|
|
await uploadSarifDebugArtifact(config, outputDir);
|
|
}
|
|
}
|