Merge pull request #2633 from github/angelapwen/legacy-artifact-default-true

Set `ArtifactV4Upgrade`'s default value to true
This commit is contained in:
Angela P Wen 2024-12-03 15:45:57 -08:00 committed by GitHub
commit 978ed829bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

2
lib/feature-flags.js generated
View file

@ -77,7 +77,7 @@ var Feature;
})(Feature || (exports.Feature = Feature = {}));
exports.featureConfig = {
[Feature.ArtifactV4Upgrade]: {
defaultValue: false,
defaultValue: true,
envVar: "CODEQL_ACTION_ARTIFACT_V4_UPGRADE",
minimumVersion: undefined,
},

File diff suppressed because one or more lines are too long

View file

@ -94,7 +94,7 @@ export const featureConfig: Record<
}
> = {
[Feature.ArtifactV4Upgrade]: {
defaultValue: false,
defaultValue: true,
envVar: "CODEQL_ACTION_ARTIFACT_V4_UPGRADE",
minimumVersion: undefined,
},