Rename uploadSarif

This commit is contained in:
Michael B. Gale
2025-10-22 19:09:39 +01:00
parent 89d3359017
commit 6f0fcbeea7
6 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -96189,7 +96189,7 @@ function filterAlertsByDiffRange(logger, sarif) {
}
// src/upload-sarif.ts
async function uploadSarif(logger, features, uploadKind, checkoutPath, sarifPath, category, processedOutputPath) {
async function processAndUploadSarif(logger, features, uploadKind, checkoutPath, sarifPath, category, processedOutputPath) {
const sarifGroups = await getGroupedSarifFilePaths(
logger,
sarifPath
@@ -96426,7 +96426,7 @@ async function run() {
const checkoutPath = getRequiredInput("checkout_path");
const category = getOptionalInput("category");
if (await features.getValue("analyze_use_new_upload" /* AnalyzeUseNewUpload */)) {
uploadResults = await uploadSarif(
uploadResults = await processAndUploadSarif(
logger,
features,
uploadKind,
+2 -2
View File
@@ -93629,7 +93629,7 @@ function filterAlertsByDiffRange(logger, sarif) {
}
// src/upload-sarif.ts
async function uploadSarif(logger, features, uploadKind, checkoutPath, sarifPath, category, processedOutputPath) {
async function processAndUploadSarif(logger, features, uploadKind, checkoutPath, sarifPath, category, processedOutputPath) {
const sarifGroups = await getGroupedSarifFilePaths(
logger,
sarifPath
@@ -93712,7 +93712,7 @@ async function run() {
const sarifPath = getRequiredInput("sarif_file");
const checkoutPath = getRequiredInput("checkout_path");
const category = getOptionalInput("category");
const uploadResults = await uploadSarif(
const uploadResults = await processAndUploadSarif(
logger,
features,
"always",