Skip to content

Commit 3bd9c3e

Browse files
authored
Merge pull request #2220 from github/update-supported-enterprise-server-versions
Update supported GitHub Enterprise Server versions
2 parents 99c9897 + dcf00b3 commit 3bd9c3e

12 files changed

+55
-62
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ Note that the only difference between `v2` and `v3` of the CodeQL Action is the
66

77
## [UNRELEASED]
88

9-
No user facing changes.
9+
- Add a deprecation warning for customers using CodeQL version 2.12.5 and earlier. These versions of CodeQL were discontinued on 26 March 2024 alongside GitHub Enterprise Server 3.8, and will be unsupported by CodeQL Action versions 3.25.0 and later and versions 2.25.0 and later. [#2220](https://github.com/github/codeql-action/pull/2220)
10+
- If you are using one of these versions, please update to CodeQL CLI version 2.12.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.
11+
- Alternatively, if you want to continue using a version of the CodeQL CLI between 2.11.6 and 2.12.5, you can replace `github/codeql-action/*@v3` by `github/codeql-action/*@v3.24.10` and `github/codeql-action/*@v2` by `github/codeql-action/*@v2.24.10` in your code scanning workflow to ensure you continue using this version of the CodeQL Action.
1012

1113
## 3.24.9 - 22 Mar 2024
1214

lib/api-compatibility.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "maximumVersion": "3.13", "minimumVersion": "3.8" }
1+
{ "maximumVersion": "3.13", "minimumVersion": "3.9" }

lib/codeql.js

+6-14
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.

lib/codeql.test.js

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

lib/codeql.test.js.map

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

lib/tools-features.js

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

lib/tools-features.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.13", "minimumVersion": "3.8"}
1+
{"maximumVersion": "3.13", "minimumVersion": "3.9"}

src/codeql.test.ts

+14-14
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import {
2929
makeVersionInfo,
3030
createTestConfig,
3131
} from "./testing-utils";
32+
import { ToolsFeature } from "./tools-features";
3233
import * as util from "./util";
3334
import { initializeEnvironment } from "./util";
3435

@@ -772,33 +773,34 @@ test("does not pass a qlconfig to the CLI when it is undefined", async (t: Execu
772773

773774
const NEW_ANALYSIS_SUMMARY_TEST_CASES = [
774775
{
775-
codeqlVersion: "2.15.0",
776+
codeqlVersion: makeVersionInfo("2.15.0", {
777+
[ToolsFeature.AnalysisSummaryV2IsDefault]: true,
778+
}),
776779
githubVersion: {
777780
type: util.GitHubVariant.DOTCOM,
778781
},
779-
flagPassed: true,
782+
flagPassed: false,
780783
negativeFlagPassed: false,
781784
},
782785
{
783-
codeqlVersion: "2.15.0",
786+
codeqlVersion: makeVersionInfo("2.15.0"),
784787
githubVersion: {
785-
type: util.GitHubVariant.GHES,
786-
version: "3.9.0",
788+
type: util.GitHubVariant.DOTCOM,
787789
},
788790
flagPassed: true,
789791
negativeFlagPassed: false,
790792
},
791793
{
792-
codeqlVersion: "2.15.0",
794+
codeqlVersion: makeVersionInfo("2.15.0"),
793795
githubVersion: {
794796
type: util.GitHubVariant.GHES,
795-
version: "3.8.6",
797+
version: "3.9.0",
796798
},
797-
flagPassed: false,
798-
negativeFlagPassed: true,
799+
flagPassed: true,
800+
negativeFlagPassed: false,
799801
},
800802
{
801-
codeqlVersion: "2.14.6",
803+
codeqlVersion: makeVersionInfo("2.14.6"),
802804
githubVersion: {
803805
type: util.GitHubVariant.DOTCOM,
804806
},
@@ -819,14 +821,12 @@ for (const {
819821
: negativeFlagPassed
820822
? "--no-new-analysis-summary"
821823
: "nothing"
822-
} for CodeQL CLI v${codeqlVersion} and ${
824+
} for CodeQL version ${JSON.stringify(codeqlVersion)} and ${
823825
util.GitHubVariant[githubVersion.type]
824826
} ${githubVersion.version ? ` ${githubVersion.version}` : ""}`, async (t) => {
825827
const runnerConstructorStub = stubToolRunnerConstructor();
826828
const codeqlObject = await codeql.getCodeQLForTesting();
827-
sinon
828-
.stub(codeqlObject, "getVersion")
829-
.resolves(makeVersionInfo(codeqlVersion));
829+
sinon.stub(codeqlObject, "getVersion").resolves(codeqlVersion);
830830
// safeWhich throws because of the test CodeQL object.
831831
sinon.stub(safeWhich, "safeWhich").resolves("");
832832
await codeqlObject.databaseInterpretResults(

src/codeql.ts

+11-14
Original file line numberDiff line numberDiff line change
@@ -280,17 +280,17 @@ const CODEQL_MINIMUM_VERSION = "2.11.6";
280280
/**
281281
* This version will shortly become the oldest version of CodeQL that the Action will run with.
282282
*/
283-
const CODEQL_NEXT_MINIMUM_VERSION = "2.11.6";
283+
const CODEQL_NEXT_MINIMUM_VERSION = "2.12.6";
284284

285285
/**
286286
* This is the version of GHES that was most recently deprecated.
287287
*/
288-
const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.7";
288+
const GHES_VERSION_MOST_RECENTLY_DEPRECATED = "3.8";
289289

290290
/**
291291
* This is the deprecation date for the version of GHES that was most recently deprecated.
292292
*/
293-
const GHES_MOST_RECENT_DEPRECATION_DATE = "2023-11-08";
293+
const GHES_MOST_RECENT_DEPRECATION_DATE = "2024-03-26";
294294

295295
/** The CLI verbosity level to use for extraction in debug mode. */
296296
const EXTRACTION_DEBUG_MODE_VERBOSITY = "progress++";
@@ -890,20 +890,16 @@ export async function getCodeQLForCmd(
890890
codeqlArgs.push("--no-sarif-include-diagnostics");
891891
}
892892
if (
893-
// Analysis summary v2 links to the status page, so check the GHES version we're running on
894-
// supports the status page.
895-
(config.gitHubVersion.type !== util.GitHubVariant.GHES ||
896-
semver.gte(config.gitHubVersion.version, "3.9.0")) &&
897893
(await util.codeQlVersionAbove(
898894
this,
899895
CODEQL_VERSION_ANALYSIS_SUMMARY_V2,
900-
))
896+
)) &&
897+
!isSupportedToolsFeature(
898+
await this.getVersion(),
899+
ToolsFeature.AnalysisSummaryV2IsDefault,
900+
)
901901
) {
902902
codeqlArgs.push("--new-analysis-summary");
903-
} else if (
904-
await util.codeQlVersionAbove(this, CODEQL_VERSION_ANALYSIS_SUMMARY_V2)
905-
) {
906-
codeqlArgs.push("--no-new-analysis-summary");
907903
}
908904
codeqlArgs.push(databasePath);
909905
if (querySuitePaths) {
@@ -1148,8 +1144,9 @@ export async function getCodeQLForCmd(
11481144
"version of the CLI using the 'tools' input to the 'init' Action, you can remove this " +
11491145
"input to use the default version.\n\n" +
11501146
"Alternatively, if you want to continue using CodeQL CLI version " +
1151-
`${result.version}, you can replace 'github/codeql-action/*@v3' by ` +
1152-
`'github/codeql-action/*@v${getActionVersion()}' in your code scanning workflow to ` +
1147+
`${result.version}, you can replace 'github/codeql-action/*@v${
1148+
getActionVersion().split(".")[0]
1149+
}' by 'github/codeql-action/*@v${getActionVersion()}' in your code scanning workflow to ` +
11531150
"continue using this version of the CodeQL Action.",
11541151
);
11551152
core.exportVariable(EnvVar.SUPPRESS_DEPRECATED_SOON_WARNING, "true");

src/tools-features.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import type { VersionInfo } from "./codeql";
22

33
export enum ToolsFeature {
4+
AnalysisSummaryV2IsDefault = "analysisSummaryV2Default",
45
BuildModeOption = "buildModeOption",
56
IndirectTracingSupportsStaticBinaries = "indirectTracingSupportsStaticBinaries",
67
InformsAboutUnsupportedPathFilters = "informsAboutUnsupportedPathFilters",

0 commit comments

Comments
 (0)