Remove unused helper file

This commit is contained in:
Angela P Wen 2024-09-11 16:36:48 -07:00
parent 4ba244037a
commit 82ce3131fa
6 changed files with 1 additions and 58 deletions

View file

@ -1,14 +0,0 @@
import * as actionsUtil from "./actions-util";
import { getConfig } from "./config-utils";
import { getActionsLogger } from "./logging";
export async function run() {
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?",
);
}
}

View file

@ -5,7 +5,6 @@
*/
import * as core from "@actions/core";
import * as analyzeActionPostHelper from "./analyze-action-post-helper";
import * as debugArtifacts from "./debug-artifacts";
import { EnvVar } from "./environment";
import * as uploadSarifActionPostHelper from "./upload-sarif-action-post-helper";
@ -13,8 +12,6 @@ import { wrapError } from "./util";
async function runWrapper() {
try {
await analyzeActionPostHelper.run();
// Upload SARIF artifacts if we determine that this is a first-party analysis run.
// For third-party runs, this artifact will be uploaded in the `upload-sarif-post` step.
if (process.env[EnvVar.INIT_ACTION_HAS_RUN] === "true") {