File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,10 @@ import { Feature } from "./feature-flags";
15
15
import * as gitUtils from "./git-utils" ;
16
16
import { KnownLanguage , Language } from "./languages" ;
17
17
import { getRunnerLogger } from "./logging" ;
18
- import { OverlayDatabaseMode } from "./overlay-database-utils" ;
18
+ import {
19
+ CODEQL_OVERLAY_MINIMUM_VERSION ,
20
+ OverlayDatabaseMode ,
21
+ } from "./overlay-database-utils" ;
19
22
import { parseRepositoryNwo } from "./repository" ;
20
23
import {
21
24
setupTests ,
@@ -1269,7 +1272,7 @@ const defaultOverlayDatabaseModeTestSetup: OverlayDatabaseModeTestSetup = {
1269
1272
repositoryOwner : "github" ,
1270
1273
buildMode : BuildMode . None ,
1271
1274
languages : [ KnownLanguage . javascript ] ,
1272
- codeqlVersion : "2.21.0" ,
1275
+ codeqlVersion : CODEQL_OVERLAY_MINIMUM_VERSION ,
1273
1276
gitRoot : "/some/git/root" ,
1274
1277
codeScanningConfig : { } ,
1275
1278
} ;
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export enum OverlayDatabaseMode {
16
16
None = "none" ,
17
17
}
18
18
19
- export const CODEQL_OVERLAY_MINIMUM_VERSION = "2.20.5 " ;
19
+ export const CODEQL_OVERLAY_MINIMUM_VERSION = "2.22.3 " ;
20
20
21
21
/**
22
22
* Writes a JSON file containing Git OIDs for all tracked files (represented
You can’t perform that action at this time.
0 commit comments