Skip to content

Commit 420b122

Browse files
committed
Use FeatureEnablement rather than Features in upload-sarif
1 parent 7b782b2 commit 420b122

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,
@@ -66,7 +66,7 @@ export type UploadSarifResults = Partial<
6666

6767
export async function uploadSarif(
6868
logger: Logger,
69-
features: Features,
69+
features: FeatureEnablement,
7070
sarifPath: string,
7171
pathStats: fs.Stats,
7272
checkoutPath: string,

0 commit comments

Comments
 (0)