Skip to content

Commit 270a29d

Browse files
authored
Merge pull request #2375 from github/update-supported-enterprise-server-versions
Update supported GitHub Enterprise Server versions
2 parents 8e14792 + 58f46da commit 270a29d

5 files changed

+11
-8
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ Note that the only difference between `v2` and `v3` of the CodeQL Action is the
77
## [UNRELEASED]
88

99
- Add `codeql-version` to outputs. [#2368](https://github.com/github/codeql-action/pull/2368)
10+
- Add a deprecation warning for customers using CodeQL version 2.13.4 and earlier. These versions of CodeQL were discontinued on 9 July 2024 alongside GitHub Enterprise Server 3.9, and will be unsupported by CodeQL Action versions 3.26.0 and later and versions 2.26.0 and later. [#2375](https://github.com/github/codeql-action/pull/2375)
11+
- If you are using one of these versions, please update to CodeQL CLI version 2.13.5 or later. For instance, if you have specified a custom version of the CLI using the 'tools' input to the 'init' Action, you can remove this input to use the default version.
12+
- Alternatively, if you want to continue using a version of the CodeQL CLI between 2.12.6 and 2.13.4, you can replace `github/codeql-action/*@v3` by `github/codeql-action/*@v3.25.13` and `github/codeql-action/*@v2` by `github/codeql-action/*@v2.25.13` in your code scanning workflow to ensure you continue using this version of the CodeQL Action.
1013

1114
## 3.25.12 - 12 Jul 2024
1215

lib/api-compatibility.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "maximumVersion": "3.14", "minimumVersion": "3.9" }
1+
{ "maximumVersion": "3.14", "minimumVersion": "3.10" }

lib/codeql.js

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

src/api-compatibility.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"maximumVersion": "3.14", "minimumVersion": "3.9"}
1+
{"maximumVersion": "3.14", "minimumVersion": "3.10"}

src/codeql.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -281,17 +281,17 @@ const CODEQL_MINIMUM_VERSION = "2.12.6";
281281
/**
282282
* This version will shortly become the oldest version of CodeQL that the Action will run with.
283283
*/
284-
const CODEQL_NEXT_MINIMUM_VERSION = "2.12.6";
284+
const CODEQL_NEXT_MINIMUM_VERSION = "2.13.5";
285285

286286
/**
287287
* This is the version of GHES that was most recently deprecated.
288288
*/
289-
const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.8";
289+
const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.9";
290290

291291
/**
292292
* This is the deprecation date for the version of GHES that was most recently deprecated.
293293
*/
294-
const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-03-26";
294+
const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-07-09";
295295

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

0 commit comments

Comments
 (0)