diff --git a/.github/actions/poetrybuild/action.yaml b/.github/actions/poetrybuild/action.yaml index 9cf67fc..325792f 100644 --- a/.github/actions/poetrybuild/action.yaml +++ b/.github/actions/poetrybuild/action.yaml @@ -17,16 +17,16 @@ inputs: runs: using: "composite" steps: - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: ${{ inputs.python }} - cache: "poetry" - name: Add pipx to PATH run: echo "/root/.local/bin" >> ${GITHUB_PATH} - name: Install poetry run: pipx install poetry shell: bash + - name: Set up Python + uses: https://github.com/actions/setup-python@v5 + with: + python-version: ${{ inputs.python }} + cache: "poetry" - name: Install dependencies run: poetry install --no-interaction ${{ inputs.poetry_args }} shell: bash