Skip to content

Commit e191774

Browse files
committed
Update first version of CLI compatible with Windows 2022
It is 2.8.2, not 2.7.3.
1 parent 2da27c1 commit e191774

15 files changed

+25
-25
lines changed

.github/workflows/__analyze-ref-input.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-custom-queries.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-custom-tracing-autobuild.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-custom-tracing.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-reconciled-tracing-autobuilder.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-reconciled-tracing-custom-build-steps.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__go-reconciled-tracing-legacy-workflow.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__ml-powered-queries.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__multi-language-autodetect.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__remote-config.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__unset-environment.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__upload-ref-sha-input.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/__with-checkout-path.yml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/debug-artifacts.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
version: stable-20211005
2525
- os: macos-latest
2626
version: stable-20211005
27-
- os: ubuntu-latest
27+
- os: ubuntu-20.04
2828
version: stable-20220120
2929
- os: macos-latest
3030
version: stable-20220120
@@ -84,7 +84,7 @@ jobs:
8484
VERSIONS="stable-20211005 stable-20220120 stable-20220401 cached latest nightly-latest"
8585
LANGUAGES="cpp csharp go java javascript python"
8686
for version in $VERSIONS; do
87-
if [[ "$version" == stable-20211005 ]]; then
87+
if [[ "$version" =~ stable-(20211005|20220120|20210809) ]]; then
8888
# Note the absence of the period in "ubuntu-2004": this is present in the image name
8989
# but not the artifact name
9090
OPERATING_SYSTEMS="ubuntu-2004 macos-latest"

pr-checks/sync.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ def isCompatibleWithLatestImages(version):
2323
return True
2424
date = version.split("-")[1]
2525
# The first version of the CodeQL CLI compatible with `ubuntu-22.04` and `windows-2022` is
26-
# 2.7.3. This appears in CodeQL Bundle version codeql-bundle-20211208.
27-
return date >= "20211208"
26+
# 2.8.2. This appears in CodeQL Bundle version codeql-bundle-20220224.
27+
return date >= "20220224"
2828

2929

3030
def operatingSystemsForVersion(version):

0 commit comments

Comments
 (0)