Skip to content

Commit d7509a4

Browse files
committed
Use FeatureEnablement rather than Features in upload-sarif
1 parent ff35963 commit d7509a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/upload-sarif.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as core from "@actions/core";
44

55
import * as actionsUtil from "./actions-util";
66
import * as analyses from "./analyses";
7-
import { Features } from "./feature-flags";
7+
import { FeatureEnablement } from "./feature-flags";
88
import { Logger } from "./logging";
99
import * as upload_lib from "./upload-lib";
1010

@@ -23,7 +23,7 @@ import * as upload_lib from "./upload-lib";
2323
*/
2424
export async function findAndUpload(
2525
logger: Logger,
26-
features: Features,
26+
features: FeatureEnablement,
2727
sarifPath: string,
2828
pathStats: fs.Stats,
2929
checkoutPath: string,
@@ -61,7 +61,7 @@ export type UploadSarifResults = Partial<
6161

6262
export async function uploadSarif(
6363
logger: Logger,
64-
features: Features,
64+
features: FeatureEnablement,
6565
sarifPath: string,
6666
pathStats: fs.Stats,
6767
checkoutPath: string,

0 commit comments

Comments
 (0)