From a31200481fb3229ff8335ecaeecd4517b2b39235 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Thu, 27 Oct 2022 16:28:36 +0100 Subject: [PATCH] Be more specific about where the 2.7.3 constraint comes from --- pr-checks/sync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pr-checks/sync.py b/pr-checks/sync.py index 8c21a1452..8682805ae 100644 --- a/pr-checks/sync.py +++ b/pr-checks/sync.py @@ -22,8 +22,8 @@ def isCompatibleWithLatestImages(version): if version in ["cached", "latest", "nightly-latest"]: return True date = version.split("-")[1] - # The first version of the CodeQL CLI compatible with the latest runner images is 2.7.3. - # This appears in CodeQL Bundle version codeql-bundle-20211208. + # The first version of the CodeQL CLI compatible with `ubuntu-22.04` and `windows-2022` is + # 2.7.3. This appears in CodeQL Bundle version codeql-bundle-20211208. return date >= "20211208"