-
Notifications
You must be signed in to change notification settings - Fork 657
Description
Description:
I tried to use the pip-install
input, in a way quite similar to the provided example:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
pip-install: 'boto3'
But executing the workflow, I get this error:
Warning: Unexpected input(s) 'pip-install', valid inputs are ['python-version', 'python-version-file', 'cache', 'architecture', 'check-latest', 'token', 'cache-dependency-path', 'update-environment', 'allow-prereleases', 'freethreaded', 'pip-version']
My runner version: 2.328.0
Action version:
v6
Platform:
- Ubuntu
- macOS
- Windows
Runner type:
- Hosted
- Self-hosted
Tools version:
I tried 3.10
and 3.13
Repro steps:
Just create a step exactly as the provided example in the documentation, or my step.
Expected behavior:
To not receive an error using pip-install
input.
Actual behavior:
Using pip-install
input in a workflow, I get this error:
Warning: Unexpected input(s) 'pip-install', valid inputs are ['python-version', 'python-version-file', 'cache', 'architecture', 'check-latest', 'token', 'cache-dependency-path', 'update-environment', 'allow-prereleases', 'freethreaded', 'pip-version']