diff --git a/.github/actions/poetrybuild/action.yaml b/.github/actions/poetrybuild/action.yaml index b5f4a20..9cf67fc 100644 --- a/.github/actions/poetrybuild/action.yaml +++ b/.github/actions/poetrybuild/action.yaml @@ -17,16 +17,16 @@ inputs: runs: using: "composite" steps: - - 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: 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: Install dependencies run: poetry install --no-interaction ${{ inputs.poetry_args }} shell: bash