Skip to content

Commit fd7ad51

Browse files
authored
Merge pull request #2971 from github/update-supported-enterprise-server-versions
Update supported GitHub Enterprise Server versions
2 parents 701df0e + ac0c9bf commit fd7ad51

10 files changed

+27
-27
lines changed

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

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ We typically release new minor versions of the CodeQL Action and Bundle when a n
7070

7171
| Minimum CodeQL Action | Minimum CodeQL Bundle Version | GitHub Environment | Notes |
7272
|-----------------------|-------------------------------|--------------------|-------|
73+
| `v3.28.21` | `2.21.3` | Enterprise Server 3.18 | |
7374
| `v3.28.12` | `2.20.7` | Enterprise Server 3.17 | |
7475
| `v3.28.6` | `2.20.3` | Enterprise Server 3.16 | |
7576
| `v3.28.6` | `2.20.3` | Enterprise Server 3.15 | |
7677
| `v3.28.6` | `2.20.3` | Enterprise Server 3.14 | |
77-
| `v3.28.6` | `2.20.3` | Enterprise Server 3.13 | |
7878

7979
See the full list of GHES release and deprecation dates at [GitHub Enterprise Server releases](https://docs.github.com/en/enterprise-server/admin/all-releases#releases-of-github-enterprise-server).
8080

lib/api-compatibility.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "maximumVersion": "3.18", "minimumVersion": "3.13" }
1+
{ "maximumVersion": "3.18", "minimumVersion": "3.14" }

lib/codeql.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/sync.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
# The default set of CodeQL Bundle versions to use for the PR checks.
1010
defaultTestVersions = [
1111
# The oldest supported CodeQL version. If bumping, update `CODEQL_MINIMUM_VERSION` in `codeql.ts`
12-
"stable-v2.16.6",
13-
# The last CodeQL release in the 2.17 series.
1412
"stable-v2.17.6",
1513
# The last CodeQL release in the 2.18 series.
1614
"stable-v2.18.4",
1715
# The last CodeQL release in the 2.19 series.
1816
"stable-v2.19.4",
1917
# The last CodeQL release in the 2.20 series.
2018
"stable-v2.20.7",
19+
# The last CodeQL release in the 2.21 series.
20+
"stable-v2.21.4",
2121
# The default version of CodeQL for Dotcom, as determined by feature flags.
2222
"default",
2323
# The version of CodeQL shipped with the Action in `defaults.json`. During the release process

src/api-compatibility.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"maximumVersion": "3.18", "minimumVersion": "3.13"}
1+
{"maximumVersion": "3.18", "minimumVersion": "3.14"}

src/codeql.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,17 +290,17 @@ const CODEQL_MINIMUM_VERSION = "2.16.6";
290290
/**
291291
* This version will shortly become the oldest version of CodeQL that the Action will run with.
292292
*/
293-
const CODEQL_NEXT_MINIMUM_VERSION = "2.16.6";
293+
const CODEQL_NEXT_MINIMUM_VERSION = "2.17.6";
294294

295295
/**
296296
* This is the version of GHES that was most recently deprecated.
297297
*/
298-
const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.12";
298+
const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.13";
299299

300300
/**
301301
* This is the deprecation date for the version of GHES that was most recently deprecated.
302302
*/
303-
const GHES_MOST_RECENT_DEPRECATION_DATE = "2025-04-03";
303+
const GHES_MOST_RECENT_DEPRECATION_DATE = "2025-06-19";
304304

305305
/** The CLI verbosity level to use for extraction in debug mode. */
306306
const EXTRACTION_DEBUG_MODE_VERBOSITY = "progress++";

0 commit comments

Comments
 (0)