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"
3737$CODEQL_VERSION = (codeql version -- format json | ConvertFrom-Json ).version
3838
3939Write-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 ) ) {
4141 throw " Invalid CodeQL version $CODEQL_VERSION . Please install $REQUIRED_CODEQL_VERSION ."
4242}
4343Write-Host - ForegroundColor ([ConsoleColor ]2 ) " OK"
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ $COMPILER_ARGS = @{
2727
2828}
2929
30- $REQUIRED_CODEQL_VERSION = " 2.6.3 "
30+ $REQUIRED_CODEQL_VERSION = " 2.9.4 "
3131
3232
3333$REPORT_QUERY = @"
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ Write-Host -ForegroundColor ([ConsoleColor]2) "OK"
262262$CODEQL_VERSION = (codeql version -- format json | ConvertFrom-Json ).version
263263
264264Write-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 ) ) {
266266 throw " Invalid CodeQL version $CODEQL_VERSION . Please install $REQUIRED_CODEQL_VERSION ."
267267}
268268Write-Host - ForegroundColor ([ConsoleColor ]2 ) " OK"
You can’t perform that action at this time.
0 commit comments