Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/src/upload-sarif-action.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Retrieve the relevant values in the method itself instead.
82 lines (73 sloc)
1.88 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as core from "@actions/core"; | |
import * as actionsUtil from "./actions-util"; | |
import { getActionsLogger } from "./logging"; | |
import * as upload_lib from "./upload-lib"; | |
import { getGitHubVersion } from "./util"; | |
interface UploadSarifStatusReport | |
extends actionsUtil.StatusReportBase, | |
upload_lib.UploadStatusReport {} | |
async function sendSuccessStatusReport( | |
startedAt: Date, | |
uploadStats: upload_lib.UploadStatusReport | |
) { | |
const statusReportBase = await actionsUtil.createStatusReportBase( | |
"upload-sarif", | |
"success", | |
startedAt | |
); | |
const statusReport: UploadSarifStatusReport = { | |
...statusReportBase, | |
...uploadStats, | |
}; | |
await actionsUtil.sendStatusReport(statusReport); | |
} | |
async function run() { | |
const startedAt = new Date(); | |
if ( | |
!(await actionsUtil.sendStatusReport( | |
await actionsUtil.createStatusReportBase( | |
"upload-sarif", | |
"starting", | |
startedAt | |
) | |
)) | |
) { | |
return; | |
} | |
try { | |
const apiDetails = { | |
auth: actionsUtil.getRequiredInput("token"), | |
url: actionsUtil.getRequiredEnvParam("GITHUB_SERVER_URL"), | |
}; | |
const gitHubVersion = await getGitHubVersion(apiDetails); | |
const uploadStats = await upload_lib.uploadFromActions( | |
actionsUtil.getRequiredInput("sarif_file"), | |
gitHubVersion, | |
apiDetails, | |
getActionsLogger() | |
); | |
await sendSuccessStatusReport(startedAt, uploadStats); | |
} catch (error) { | |
core.setFailed(error.message); | |
console.log(error); | |
await actionsUtil.sendStatusReport( | |
await actionsUtil.createStatusReportBase( | |
"upload-sarif", | |
"failure", | |
startedAt, | |
error.message, | |
error.stack | |
) | |
); | |
return; | |
} | |
} | |
async function runWrapper() { | |
try { | |
await run(); | |
} catch (error) { | |
core.setFailed(`codeql/upload-sarif action failed: ${error}`); | |
console.log(error); | |
} | |
} | |
void runWrapper(); |