Bump minimum supported CodeQL version to 2.4.5

This is the earliest CodeQL version supported by GHES.
Bumping to this version resolves some flaky tests caused by the "We
still have not reached idleness" deadlock, as this deadlock is fixed in
2.4.5.
This commit is contained in:
Henry Mercer 2022-02-16 12:31:32 +00:00
parent ef024e702c
commit 13c841aa39
14 changed files with 19 additions and 17 deletions

View file

@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
version:
- stable-20201028
- stable-20210308
- stable-20210319
- stable-20210809
- cached

View file

@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
version:
- stable-20201028
- stable-20210308
- stable-20210319
- stable-20210809
- cached

View file

@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
version:
- stable-20201028
- stable-20210308
- stable-20210319
- stable-20210809
- cached

View file

@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
version:
- stable-20201028
- stable-20210308
- stable-20210319
- stable-20210809
- cached

View file

@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
version:
- stable-20201028
- stable-20210308
- stable-20210319
- stable-20210809
- cached

View file

@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
version:
- stable-20201028
- stable-20210308
- stable-20210319
- stable-20210809
- cached

View file

@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
version:
- stable-20201028
- stable-20210308
- stable-20210319
- stable-20210809
- cached

View file

@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
version:
- stable-20201028
- stable-20210308
- stable-20210319
- stable-20210809
- cached

View file

@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
version:
- stable-20201028
- stable-20210308
- stable-20210319
- stable-20210809
- cached

View file

@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
version:
- stable-20201028
- stable-20210308
- stable-20210319
- stable-20210809
- cached

5
lib/codeql.js generated
View file

@ -59,9 +59,10 @@ const CODEQL_DEFAULT_ACTION_REPOSITORY = "github/codeql-action";
* below can be used to conditionally enable certain features on versions newer
* than this. Please record the reason we cannot support an older version.
*
* Reason: Changes to how the tracing environment is set up.
* Reason: First version containing fix for the "We still have not reached
* idleness" deadlock.
*/
const CODEQL_MINIMUM_VERSION = "2.3.1";
const CODEQL_MINIMUM_VERSION = "2.4.5";
/**
* Versions of CodeQL that version-flag certain functionality in the Action.
* For convenience, please keep these in descending order. Once a version

File diff suppressed because one or more lines are too long

View file

@ -2,8 +2,8 @@ import ruamel.yaml
import os
defaultTestVersions = [
# The oldest supported CodeQL version: 2.3.1. If bumping, update `CODEQL_MINIMUM_VERSION` in `codeql.ts`
"stable-20201028",
# The oldest supported CodeQL version: 2.4.5. If bumping, update `CODEQL_MINIMUM_VERSION` in `codeql.ts`
"stable-20210308",
# The last CodeQL release in the 2.4 series: 2.4.6.
"stable-20210319",
# The last CodeQL release in the 2.5 series: 2.5.9.

View file

@ -203,9 +203,10 @@ const CODEQL_DEFAULT_ACTION_REPOSITORY = "github/codeql-action";
* below can be used to conditionally enable certain features on versions newer
* than this. Please record the reason we cannot support an older version.
*
* Reason: Changes to how the tracing environment is set up.
* Reason: First version containing fix for the "We still have not reached
* idleness" deadlock.
*/
const CODEQL_MINIMUM_VERSION = "2.3.1";
const CODEQL_MINIMUM_VERSION = "2.4.5";
/**
* Versions of CodeQL that version-flag certain functionality in the Action.