Skip to content

Commit 3d026bc

Browse files
Apply suggestions from code review
Co-authored-by: Henry Mercer <[email protected]>
1 parent 7c23a5e commit 3d026bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

init/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ inputs:
8989
description: A token for fetching external config files and queries if they reside in a private repository in the same GitHub instance that is running this action.
9090
required: false
9191
setup-python-dependencies:
92-
description: DEPRECATED. CodeQL Action no longer install Python dependencies (from 3.25.0+/2.25.0+)
92+
description: DEPRECATED. This option is ignored since CodeQL Action no longer installs Python dependencies as of versions 3.25.0 and 2.25.0.
9393
required: false
9494
source-root:
9595
description: Path of the root source code directory, relative to $GITHUB_WORKSPACE.

src/analyze.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ async function setupPythonExtractor(logger: Logger) {
124124
}
125125

126126
logger.warning(
127-
"CODEQL_PYTHON environment variable is no longer supported. Please remove it 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." +
127+
"The CODEQL_PYTHON environment variable is no longer supported. Please remove it 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." +
128128
"\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'.",
129129
);
130130
return;

0 commit comments

Comments
 (0)