Skip to content

Commit 29a4713

Browse files
committed
Enable diagnostics functionality on GHES
1 parent dc81ae3 commit 29a4713

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

lib/feature-flags.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/feature-flags.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/feature-flags.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ export const featureConfig: Record<
6262
[Feature.ExportCodeScanningConfigEnabled]: {
6363
envVar: "CODEQL_ACTION_EXPORT_CODE_SCANNING_CONFIG",
6464
minimumVersion: "2.12.3",
65-
defaultValue: false,
65+
defaultValue: true,
6666
},
6767
[Feature.ExportDiagnosticsEnabled]: {
6868
envVar: "CODEQL_ACTION_EXPORT_DIAGNOSTICS",
6969
minimumVersion: "2.12.4",
70-
defaultValue: false,
70+
defaultValue: true,
7171
},
7272

7373
[Feature.MlPoweredQueriesEnabled]: {
@@ -78,7 +78,7 @@ export const featureConfig: Record<
7878
[Feature.UploadFailedSarifEnabled]: {
7979
envVar: "CODEQL_ACTION_UPLOAD_FAILED_SARIF",
8080
minimumVersion: "2.11.3",
81-
defaultValue: false,
81+
defaultValue: true,
8282
},
8383
};
8484

0 commit comments

Comments
 (0)