Skip to content

Commit 58ff74a

Browse files
authored
Merge pull request #2031 from github/rasmuswl/no-dep-inst-default
Python: Don't install deps by default for all users
2 parents 216127f + 9926570 commit 58ff74a

10 files changed

+70
-26
lines changed

CHANGELOG.md

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

77
## [UNRELEASED]
88

9+
- We are rolling out a feature in January 2024 that will disable Python dependency installation by default for all users. This improves the speed of analysis while having only a very minor impact on results. You can override this behavior by setting `CODEQL_ACTION_DISABLE_PYTHON_DEPENDENCY_INSTALLATION=false` in your workflow, however we plan to remove this ability in future versions of the CodeQL Action. [#2031](https://github.com/github/codeql-action/pull/2031)
910
- The CodeQL Action now requires CodeQL version 2.11.6 or later. For more information, see [the corresponding changelog entry for CodeQL Action version 2.22.7](#2227---16-nov-2023). [#2009](https://github.com/github/codeql-action/pull/2009)
1011

1112
## 3.22.12 - 22 Dec 2023

lib/analyze.js

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

lib/analyze.js.map

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

lib/feature-flags.js

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

lib/feature-flags.js.map

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

lib/init-action.js

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

lib/init-action.js.map

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

src/analyze.ts

+2-6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import {
1818
Feature,
1919
logCodeScanningConfigInCli,
2020
useCodeScanningConfigInCli,
21+
isPythonDependencyInstallationDisabled,
2122
} from "./feature-flags";
2223
import { isScannedLanguage, Language } from "./languages";
2324
import { Logger } from "./logging";
@@ -104,12 +105,7 @@ async function setupPythonExtractor(
104105
return;
105106
}
106107

107-
if (
108-
await features.getValue(
109-
Feature.DisablePythonDependencyInstallationEnabled,
110-
codeql,
111-
)
112-
) {
108+
if (await isPythonDependencyInstallationDisabled(codeql, features)) {
113109
logger.warning(
114110
"We recommend that you remove the CODEQL_PYTHON environment variable from your workflow. This environment variable was originally used to specify a Python executable that included the dependencies of your Python code, however Python analysis no longer uses these dependencies." +
115111
"\nIf you used CODEQL_PYTHON to force the version of Python to analyze as, please use CODEQL_EXTRACTOR_PYTHON_ANALYSIS_VERSION instead, such as 'CODEQL_EXTRACTOR_PYTHON_ANALYSIS_VERSION=2.7' or 'CODEQL_EXTRACTOR_PYTHON_ANALYSIS_VERSION=3.11'.",

src/feature-flags.ts

+26
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export enum Feature {
4949
CppDependencyInstallation = "cpp_dependency_installation_enabled",
5050
DisableKotlinAnalysisEnabled = "disable_kotlin_analysis_enabled",
5151
DisablePythonDependencyInstallationEnabled = "disable_python_dependency_installation_enabled",
52+
PythonDefaultIsToSkipDependencyInstallationEnabled = "python_default_is_to_skip_dependency_installation_enabled",
5253
EvaluatorFineGrainedParallelismEnabled = "evaluator_fine_grained_parallelism_enabled",
5354
ExportDiagnosticsEnabled = "export_diagnostics_enabled",
5455
QaTelemetryEnabled = "qa_telemetry_enabled",
@@ -103,6 +104,15 @@ export const featureConfig: Record<
103104
minimumVersion: undefined,
104105
defaultValue: false,
105106
},
107+
[Feature.PythonDefaultIsToSkipDependencyInstallationEnabled]: {
108+
// we can reuse the same environment variable as above. If someone has set it to
109+
// `true` in their workflow this means dependencies are not installed, setting it to
110+
// `false` means dependencies _will_ be installed. The same semantics are applied
111+
// here!
112+
envVar: "CODEQL_ACTION_DISABLE_PYTHON_DEPENDENCY_INSTALLATION",
113+
minimumVersion: "2.16.0",
114+
defaultValue: false,
115+
},
106116
};
107117

108118
/**
@@ -474,3 +484,19 @@ export async function logCodeScanningConfigInCli(
474484
);
475485
}
476486
}
487+
488+
export async function isPythonDependencyInstallationDisabled(
489+
codeql: CodeQL,
490+
features: FeatureEnablement,
491+
): Promise<boolean> {
492+
return (
493+
(await features.getValue(
494+
Feature.DisablePythonDependencyInstallationEnabled,
495+
codeql,
496+
)) ||
497+
(await features.getValue(
498+
Feature.PythonDefaultIsToSkipDependencyInstallationEnabled,
499+
codeql,
500+
))
501+
);
502+
}

src/init-action.ts

+14-13
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ import { getGitHubVersion } from "./api-client";
1616
import { CodeQL } from "./codeql";
1717
import * as configUtils from "./config-utils";
1818
import { EnvVar } from "./environment";
19-
import { Feature, Features } from "./feature-flags";
19+
import {
20+
Feature,
21+
Features,
22+
isPythonDependencyInstallationDisabled,
23+
} from "./feature-flags";
2024
import {
2125
checkInstallPython311,
2226
initCodeQL,
@@ -293,12 +297,7 @@ async function run() {
293297
config.languages.includes(Language.python) &&
294298
getRequiredInput("setup-python-dependencies") === "true"
295299
) {
296-
if (
297-
await features.getValue(
298-
Feature.DisablePythonDependencyInstallationEnabled,
299-
codeql,
300-
)
301-
) {
300+
if (await isPythonDependencyInstallationDisabled(codeql, features)) {
302301
logger.info("Skipping python dependency installation");
303302
} else {
304303
try {
@@ -446,16 +445,18 @@ async function run() {
446445
}
447446

448447
// Disable Python dependency extraction if feature flag set
449-
if (
450-
await features.getValue(
451-
Feature.DisablePythonDependencyInstallationEnabled,
452-
codeql,
453-
)
454-
) {
448+
if (await isPythonDependencyInstallationDisabled(codeql, features)) {
455449
core.exportVariable(
456450
"CODEQL_EXTRACTOR_PYTHON_DISABLE_LIBRARY_EXTRACTION",
457451
"true",
458452
);
453+
} else {
454+
// From 2.16.0 the default for the python extractor is to not perform any library
455+
// extraction, so we need to set this flag to enable it.
456+
core.exportVariable(
457+
"CODEQL_EXTRACTOR_PYTHON_FORCE_ENABLE_LIBRARY_EXTRACTION_UNTIL_2_17_0",
458+
"true",
459+
);
459460
}
460461

461462
const sourceRoot = path.resolve(

0 commit comments

Comments
 (0)