From 075ddc535d6e1cd2a5b091efa750e94831b9479d Mon Sep 17 00:00:00 2001 From: Tiago Reis Date: Thu, 7 Mar 2024 12:30:22 +0000 Subject: [PATCH] Fix ubuntu pipx installation by calling pip from python3 Signed-off-by: Tiago Reis --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index b0c9ab0..57b07a6 100644 --- a/action.yml +++ b/action.yml @@ -17,8 +17,8 @@ runs: using: "composite" steps: - run: | - pip install --user pipx - pipx ensurepath + python3 -m pip install --user pipx + python3 -m pipx ensurepath shell: bash - if: ${{ inputs.poetry-version == 'latest' }} run: |