infra: explicitly specify py path (#15826)

This commit is contained in:
Bagatur 2024-01-10 11:59:43 -05:00 committed by GitHub
parent 79124fd71d
commit 6432494f9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,6 +28,7 @@ runs:
steps: steps:
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
name: Setup python ${{ inputs.python-version }} name: Setup python ${{ inputs.python-version }}
id: setup-python
with: with:
python-version: ${{ inputs.python-version }} python-version: ${{ inputs.python-version }}
@ -74,7 +75,8 @@ runs:
env: env:
POETRY_VERSION: ${{ inputs.poetry-version }} POETRY_VERSION: ${{ inputs.poetry-version }}
PYTHON_VERSION: ${{ inputs.python-version }} PYTHON_VERSION: ${{ inputs.python-version }}
run: pipx install "poetry==$POETRY_VERSION" --python "python$PYTHON_VERSION" --verbose # Install poetry using the python version installed by setup-python step.
run: pipx install "poetry==$POETRY_VERSION" --python '${{ steps.setup-python.outputs.python-path }}' --verbose
- name: Restore pip and poetry cached dependencies - name: Restore pip and poetry cached dependencies
uses: actions/cache@v3 uses: actions/cache@v3