Skip to content

Commit 76aafb9

Browse files
authoredOct 4, 2024
Merge pull request #2520 from github/update-supported-enterprise-server-versions
Update supported GitHub Enterprise Server versions
2 parents 8b33300 + 01007b8 commit 76aafb9

7 files changed

+17
-10
lines changed
 

‎.github/workflows/update-supported-enterprise-server-versions.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ jobs:
5454
git push origin update-supported-enterprise-server-versions
5555
5656
body="This PR updates the list of supported GitHub Enterprise Server versions, either because a new "
57-
body+="version is about to be feature frozen, or because an old release has been deprecated.\n\n"
57+
body+="version is about to be feature frozen, or because an old release has been deprecated."
58+
body+=$'\n\n'
5859
body+="If an old release has been deprecated, please follow the instructions in CONTRIBUTING.md to "
5960
body+="deprecate the corresponding version of CodeQL."
6061

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ No user facing changes.
1616

1717
This change is currently unavailable for GitHub Enterprise Server customers, as `actions/upload-artifact@v4` and `actions/download-artifact@v4` are not yet compatible with GHES.
1818

19+
- _Upcoming breaking change_: Add a deprecation warning for customers using CodeQL version 2.14.5 and earlier. These versions of CodeQL were discontinued on 24 September 2024 alongside GitHub Enterprise Server 3.10, and will be unsupported by CodeQL Action versions 3.27.0 and later and versions 2.27.0 and later. [#2520](https://github.com/github/codeql-action/pull/2520)
20+
21+
- If you are using one of these versions, please update to CodeQL CLI version 2.14.6 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.
22+
23+
- Alternatively, if you want to continue using a version of the CodeQL CLI between 2.13.5 and 2.14.5, you can replace `github/codeql-action/*@v3` by `github/codeql-action/*@v3.26.11` and `github/codeql-action/*@v2` by `github/codeql-action/*@v2.26.11` in your code scanning workflow to ensure you continue using this version of the CodeQL Action.
24+
1925
## 3.26.10 - 30 Sep 2024
2026

2127
- We are rolling out a feature in September/October 2024 that sets up CodeQL using a bundle compressed with [Zstandard](http://facebook.github.io/zstd/). Our aim is to improve the performance of setting up CodeQL. [#2502](https://github.com/github/codeql-action/pull/2502)

‎lib/api-compatibility.json

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

‎lib/codeql.js

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

‎lib/codeql.js.map

+1-1
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.15", "minimumVersion": "3.10"}
1+
{"maximumVersion": "3.15", "minimumVersion": "3.11"}

‎src/codeql.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -279,17 +279,17 @@ const CODEQL_MINIMUM_VERSION = "2.13.5";
279279
/**
280280
* This version will shortly become the oldest version of CodeQL that the Action will run with.
281281
*/
282-
const CODEQL_NEXT_MINIMUM_VERSION = "2.13.5";
282+
const CODEQL_NEXT_MINIMUM_VERSION = "2.14.6";
283283

284284
/**
285285
* This is the version of GHES that was most recently deprecated.
286286
*/
287-
const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.9";
287+
const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.10";
288288

289289
/**
290290
* This is the deprecation date for the version of GHES that was most recently deprecated.
291291
*/
292-
const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-07-09";
292+
const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-09-24";
293293

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

0 commit comments

Comments
 (0)
Please sign in to comment.