From 64f3256d3d6e746c5fa57451dad356150ebf2336 Mon Sep 17 00:00:00 2001 From: Max Mehl Date: Sun, 12 Jan 2025 19:55:01 +0100 Subject: [PATCH] sort --- .gitea/actions/poetrybuild/action.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/actions/poetrybuild/action.yaml b/.gitea/actions/poetrybuild/action.yaml index cd78898..241b96f 100644 --- a/.gitea/actions/poetrybuild/action.yaml +++ b/.gitea/actions/poetrybuild/action.yaml @@ -12,14 +12,14 @@ inputs: runs: using: "composite" steps: - - uses: actions/setup-python@v5 - with: - python-version: "3.12" - cache: "poetry" # caching poetry dependencies - name: Add pipx to PATH run: echo "/root/.local/bin" >> ${GITHUB_PATH} - name: Install poetry run: pipx install poetry + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "poetry" # caching poetry dependencies - name: Install poetry package run: poetry install --no-interaction ${{ inputs.poetry_install_args }} shell: bash