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 @@ -20,7 +20,10 @@ import { Feature } from "./feature-flags";
20
20
import * as gitUtils from "./git-utils" ;
21
21
import { Language } from "./languages" ;
22
22
import { getRunnerLogger } from "./logging" ;
23
- import { OverlayDatabaseMode } from "./overlay-database-utils" ;
23
+ import {
24
+ CODEQL_OVERLAY_MINIMUM_VERSION ,
25
+ OverlayDatabaseMode ,
26
+ } from "./overlay-database-utils" ;
24
27
import { parseRepositoryNwo } from "./repository" ;
25
28
import {
26
29
setupTests ,
@@ -1213,7 +1216,7 @@ const defaultOverlayDatabaseModeTestSetup: OverlayDatabaseModeTestSetup = {
1213
1216
repositoryOwner : "github" ,
1214
1217
buildMode : BuildMode . None ,
1215
1218
languages : [ Language . javascript ] ,
1216
- codeqlVersion : "2.21.0" ,
1219
+ codeqlVersion : CODEQL_OVERLAY_MINIMUM_VERSION ,
1217
1220
gitRoot : "/some/git/root" ,
1218
1221
codeScanningConfig : { } ,
1219
1222
} ;
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.2 " ;
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