Skip to content

Commit dc7009b

Browse files
authored
Merge pull request #3956 from github/update-supported-enterprise-server-versions
Update supported GitHub Enterprise Server versions
2 parents 4581e39 + 37ae669 commit dc7009b

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
44

55
## [UNRELEASED]
66

7-
No user facing changes.
7+
- _Upcoming breaking change_: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. [#3956](https://github.com/github/codeql-action/pull/3956)
88

99
## 4.37.0 - 08 Jul 2026
1010

lib/entry-points.js

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

src/api-compatibility.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"maximumVersion": "3.22", "minimumVersion": "3.16"}
1+
{"maximumVersion": "3.22", "minimumVersion": "3.17"}

src/codeql.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -272,17 +272,17 @@ const CODEQL_MINIMUM_VERSION = "2.19.4";
272272
/**
273273
* This version will shortly become the oldest version of CodeQL that the Action will run with.
274274
*/
275-
const CODEQL_NEXT_MINIMUM_VERSION = "2.19.4";
275+
const CODEQL_NEXT_MINIMUM_VERSION = "2.20.7";
276276

277277
/**
278278
* This is the version of GHES that was most recently deprecated.
279279
*/
280-
const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.15";
280+
const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.16";
281281

282282
/**
283283
* This is the deprecation date for the version of GHES that was most recently deprecated.
284284
*/
285-
const GHES_MOST_RECENT_DEPRECATION_DATE = "2026-04-09";
285+
const GHES_MOST_RECENT_DEPRECATION_DATE = "2026-07-01";
286286

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

0 commit comments

Comments
 (0)