From 779838b8492657abe9d176622e818969b0bc0ee8 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Wed, 15 Nov 2023 17:52:32 +0000 Subject: [PATCH] Prepare for CodeQL v2.10.* deprecation Warn users of CodeQL v2.11.5 and earlier that the next minor release of the CodeQL Action will require CodeQL v2.11.6 or later. --- 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 1943a8c7bb..80ad908add 100644 --- a/lib/codeql.js +++ b/lib/codeql.js @@ -77,15 +77,15 @@ const CODEQL_MINIMUM_VERSION = "2.10.5"; /** * This version will shortly become the oldest version of CodeQL that the Action will run with. */ -const CODEQL_NEXT_MINIMUM_VERSION = "2.10.5"; +const CODEQL_NEXT_MINIMUM_VERSION = "2.11.6"; /** * This is the version of GHES that was most recently deprecated. */ -const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.6"; +const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.7"; /** * This is the deprecation date for the version of GHES that was most recently deprecated. */ -const GHES_MOST_RECENT_DEPRECATION_DATE = "2023-09-12"; +const GHES_MOST_RECENT_DEPRECATION_DATE = "2023-11-08"; /* * Versions of CodeQL that version-flag certain functionality in the Action. * For convenience, please keep these in descending order. Once a version diff --git a/src/codeql.ts b/src/codeql.ts index bd173a6dcc..10c2ebc888 100644 --- a/src/codeql.ts +++ b/src/codeql.ts @@ -298,17 +298,17 @@ const CODEQL_MINIMUM_VERSION = "2.10.5"; /** * This version will shortly become the oldest version of CodeQL that the Action will run with. */ -const CODEQL_NEXT_MINIMUM_VERSION = "2.10.5"; +const CODEQL_NEXT_MINIMUM_VERSION = "2.11.6"; /** * This is the version of GHES that was most recently deprecated. */ -const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.6"; +const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.7"; /** * This is the deprecation date for the version of GHES that was most recently deprecated. */ -const GHES_MOST_RECENT_DEPRECATION_DATE = "2023-09-12"; +const GHES_MOST_RECENT_DEPRECATION_DATE = "2023-11-08"; /* * Versions of CodeQL that version-flag certain functionality in the Action.