File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Write-Host -ForegroundColor ([ConsoleColor]2) "OK"
37
37
$CODEQL_VERSION = (codeql version -- format json | ConvertFrom-Json ).version
38
38
39
39
Write-Host " Checking 'codeql' version = $REQUIRED_CODEQL_VERSION ...." - NoNewline
40
- if (-Not $CODEQL_VERSION -eq $REQUIRED_CODEQL_VERSION ) {
40
+ if (-Not ( $CODEQL_VERSION -eq $REQUIRED_CODEQL_VERSION ) ) {
41
41
throw " Invalid CodeQL version $CODEQL_VERSION . Please install $REQUIRED_CODEQL_VERSION ."
42
42
}
43
43
Write-Host - ForegroundColor ([ConsoleColor ]2 ) " OK"
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ $COMPILER_ARGS = @{
27
27
28
28
}
29
29
30
- $REQUIRED_CODEQL_VERSION = " 2.6.3 "
30
+ $REQUIRED_CODEQL_VERSION = " 2.9.4 "
31
31
32
32
33
33
$REPORT_QUERY = @"
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ Write-Host -ForegroundColor ([ConsoleColor]2) "OK"
262
262
$CODEQL_VERSION = (codeql version -- format json | ConvertFrom-Json ).version
263
263
264
264
Write-Host " Checking 'codeql' version = $REQUIRED_CODEQL_VERSION ...." - NoNewline
265
- if (-Not $CODEQL_VERSION -eq $REQUIRED_CODEQL_VERSION ) {
265
+ if (-Not ( $CODEQL_VERSION -eq $REQUIRED_CODEQL_VERSION ) ) {
266
266
throw " Invalid CodeQL version $CODEQL_VERSION . Please install $REQUIRED_CODEQL_VERSION ."
267
267
}
268
268
Write-Host - ForegroundColor ([ConsoleColor ]2 ) " OK"
You can’t perform that action at this time.
0 commit comments