From f06c933b167429da7ab22712c3f24d3918569125 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Wed, 3 Apr 2024 15:44:00 +0100 Subject: [PATCH] Update soon to be deprecated CodeQL version --- 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 329b5341d..e3e733983 100644 --- a/lib/codeql.js +++ b/lib/codeql.js @@ -56,15 +56,15 @@ const CODEQL_MINIMUM_VERSION = "2.11.6"; /** * This version will shortly become the oldest version of CodeQL that the Action will run with. */ -const CODEQL_NEXT_MINIMUM_VERSION = "2.11.6"; +const CODEQL_NEXT_MINIMUM_VERSION = "2.12.6"; /** * This is the version of GHES that was most recently deprecated. */ -const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.7"; +const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.8"; /** * This is the deprecation date for the version of GHES that was most recently deprecated. */ -const GHES_MOST_RECENT_DEPRECATION_DATE = "2023-11-08"; +const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-03-26"; /** 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 1453727e6..3e8e5f47e 100644 --- a/src/codeql.ts +++ b/src/codeql.ts @@ -280,17 +280,17 @@ const CODEQL_MINIMUM_VERSION = "2.11.6"; /** * This version will shortly become the oldest version of CodeQL that the Action will run with. */ -const CODEQL_NEXT_MINIMUM_VERSION = "2.11.6"; +const CODEQL_NEXT_MINIMUM_VERSION = "2.12.6"; /** * This is the version of GHES that was most recently deprecated. */ -const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.7"; +const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.8"; /** * This is the deprecation date for the version of GHES that was most recently deprecated. */ -const GHES_MOST_RECENT_DEPRECATION_DATE = "2023-11-08"; +const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-03-26"; /** The CLI verbosity level to use for extraction in debug mode. */ const EXTRACTION_DEBUG_MODE_VERBOSITY = "progress++";