From d7509a4aaf5ddcd4d7afd2e6caabbde688aa5c90 Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Thu, 25 Sep 2025 23:36:42 +0100 Subject: [PATCH] Use `FeatureEnablement` rather than `Features` in `upload-sarif` --- src/upload-sarif.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/upload-sarif.ts b/src/upload-sarif.ts index b651f08bb..48854e58c 100644 --- a/src/upload-sarif.ts +++ b/src/upload-sarif.ts @@ -4,7 +4,7 @@ import * as core from "@actions/core"; import * as actionsUtil from "./actions-util"; import * as analyses from "./analyses"; -import { Features } from "./feature-flags"; +import { FeatureEnablement } from "./feature-flags"; import { Logger } from "./logging"; import * as upload_lib from "./upload-lib"; @@ -23,7 +23,7 @@ import * as upload_lib from "./upload-lib"; */ export async function findAndUpload( logger: Logger, - features: Features, + features: FeatureEnablement, sarifPath: string, pathStats: fs.Stats, checkoutPath: string, @@ -61,7 +61,7 @@ export type UploadSarifResults = Partial< export async function uploadSarif( logger: Logger, - features: Features, + features: FeatureEnablement, sarifPath: string, pathStats: fs.Stats, checkoutPath: string,