From d1c7d497535e1ac4908c27c35dfe255b9ea07e28 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Apr 2025 00:16:14 +0000 Subject: [PATCH 1/3] Update supported GitHub Enterprise Server versions --- lib/api-compatibility.json | 2 +- src/api-compatibility.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/api-compatibility.json b/lib/api-compatibility.json index 06aaa38869..afe6182c6a 100644 --- a/lib/api-compatibility.json +++ b/lib/api-compatibility.json @@ -1 +1 @@ -{ "maximumVersion": "3.17", "minimumVersion": "3.12" } +{ "maximumVersion": "3.17", "minimumVersion": "3.13" } diff --git a/src/api-compatibility.json b/src/api-compatibility.json index 22e711d786..9dae18e33c 100644 --- a/src/api-compatibility.json +++ b/src/api-compatibility.json @@ -1 +1 @@ -{"maximumVersion": "3.17", "minimumVersion": "3.12"} +{"maximumVersion": "3.17", "minimumVersion": "3.13"} From 4e178c584157c51ff3d6fb87c764e7ed0715f82a Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Wed, 14 May 2025 17:12:44 +0100 Subject: [PATCH 2/3] Update supported versions table in README --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7c6a3c1c2b..31f6bc3fe3 100644 --- a/README.md +++ b/README.md @@ -70,10 +70,11 @@ We typically release new minor versions of the CodeQL Action and Bundle when a n | Minimum CodeQL Action | Minimum CodeQL Bundle Version | GitHub Environment | Notes | |-----------------------|-------------------------------|--------------------|-------| -| `v3.26.6` | `2.18.4` | Enterprise Server 3.15 | | -| `v3.25.11` | `2.17.6` | Enterprise Server 3.14 | | -| `v3.24.11` | `2.16.6` | Enterprise Server 3.13 | | -| `v3.22.12` | `2.15.5` | Enterprise Server 3.12 | | +| `v3.28.12` | `2.20.7` | Enterprise Server 3.17 | | +| `v3.28.6` | `2.20.3` | Enterprise Server 3.16 | | +| `v3.28.6` | `2.20.3` | Enterprise Server 3.15 | | +| `v3.28.6` | `2.20.3` | Enterprise Server 3.14 | | +| `v3.28.6` | `2.20.3` | Enterprise Server 3.13 | | 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). From 4420887272f1c68c7c58ca2970bdfb5eb657cf08 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Wed, 14 May 2025 17:13:10 +0100 Subject: [PATCH 3/3] Add deprecation warning for CodeQL 2.16.5 and earlier --- lib/codeql.js | 6 +++--- src/codeql.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/codeql.js b/lib/codeql.js index a98e51d072..ae7b66fe0c 100644 --- a/lib/codeql.js +++ b/lib/codeql.js @@ -78,15 +78,15 @@ const CODEQL_MINIMUM_VERSION = "2.15.5"; /** * This version will shortly become the oldest version of CodeQL that the Action will run with. */ -const CODEQL_NEXT_MINIMUM_VERSION = "2.15.5"; +const CODEQL_NEXT_MINIMUM_VERSION = "2.16.6"; /** * This is the version of GHES that was most recently deprecated. */ -const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.11"; +const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.12"; /** * This is the deprecation date for the version of GHES that was most recently deprecated. */ -const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-12-19"; +const GHES_MOST_RECENT_DEPRECATION_DATE = "2025-04-03"; /** The CLI verbosity level to use for extraction in debug mode. */ const EXTRACTION_DEBUG_MODE_VERBOSITY = "progress++"; /* diff --git a/src/codeql.ts b/src/codeql.ts index 540a2b849e..da5b55b60f 100644 --- a/src/codeql.ts +++ b/src/codeql.ts @@ -285,17 +285,17 @@ const CODEQL_MINIMUM_VERSION = "2.15.5"; /** * This version will shortly become the oldest version of CodeQL that the Action will run with. */ -const CODEQL_NEXT_MINIMUM_VERSION = "2.15.5"; +const CODEQL_NEXT_MINIMUM_VERSION = "2.16.6"; /** * This is the version of GHES that was most recently deprecated. */ -const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.11"; +const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.12"; /** * This is the deprecation date for the version of GHES that was most recently deprecated. */ -const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-12-19"; +const GHES_MOST_RECENT_DEPRECATION_DATE = "2025-04-03"; /** The CLI verbosity level to use for extraction in debug mode. */ const EXTRACTION_DEBUG_MODE_VERBOSITY = "progress++";