diff --git a/lib/codeql.js b/lib/codeql.js index a8cb513926..fcf4dd54da 100644 --- a/lib/codeql.js +++ b/lib/codeql.js @@ -66,15 +66,15 @@ const CODEQL_MINIMUM_VERSION = "2.12.6"; /** * This version will shortly become the oldest version of CodeQL that the Action will run with. */ -const CODEQL_NEXT_MINIMUM_VERSION = "2.12.6"; +const CODEQL_NEXT_MINIMUM_VERSION = "2.13.5"; /** * This is the version of GHES that was most recently deprecated. */ -const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.8"; +const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.9"; /** * This is the deprecation date for the version of GHES that was most recently deprecated. */ -const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-03-26"; +const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-07-09"; /** 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 e4cac65c22..ebc02e1eff 100644 --- a/src/codeql.ts +++ b/src/codeql.ts @@ -281,17 +281,17 @@ const CODEQL_MINIMUM_VERSION = "2.12.6"; /** * This version will shortly become the oldest version of CodeQL that the Action will run with. */ -const CODEQL_NEXT_MINIMUM_VERSION = "2.12.6"; +const CODEQL_NEXT_MINIMUM_VERSION = "2.13.5"; /** * This is the version of GHES that was most recently deprecated. */ -const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.8"; +const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.9"; /** * This is the deprecation date for the version of GHES that was most recently deprecated. */ -const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-03-26"; +const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-07-09"; /** The CLI verbosity level to use for extraction in debug mode. */ const EXTRACTION_DEBUG_MODE_VERBOSITY = "progress++";