From a53006354badee196a4bfb22f333a556d193ed7b Mon Sep 17 00:00:00 2001 From: Max Mehl Date: Tue, 1 Apr 2025 23:03:03 +0200 Subject: [PATCH] github action --- .github/actions/poetrybuild/action.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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