8000 Merge pull request #1725 from github/henrymercer/fix-flag-name · github/codeql-action@543e468 · GitHub
[go: up one dir, main page]

Skip to content

Commit 543e468

Browse files
authored
Merge pull request #1725 from github/henrymercer/fix-flag-name
Fix the name of the disable Python dependency installation feature flag
2 parents e287d85 + c920531 commit 543e468

File tree

9 files changed

+16
-13
lines changed

9 files changed

+16
-13
lines changed

lib/analyze.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/feature-flags.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/feature-flags.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/analyze.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,10 @@ async function setupPythonExtractor(
9292
}
9393

9494
if (
95-
await features.getValue(Feature.DisablePythonDependencyInstallation, codeql)
95+
await features.getValue(
96+
Feature.DisablePythonDependencyInstal 531D lationEnabled,
97+
codeql
98+
)
9699
) {
97100
logger.warning(
98101
"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." +

0 commit comments

Comments
 (0)
0