We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c31426b commit 7b6d33eCopy full SHA for 7b6d33e
action.yml
@@ -16,13 +16,17 @@ inputs:
16
runs:
17
using: "composite"
18
steps:
19
+ - run: |
20
+ pip install --user pipx
21
+ pipx ensurepath
22
+ shell: bash
23
- if: ${{ inputs.poetry-version == 'latest' }}
24
run: |
- pip install -U poetry
25
+ pipx install poetry
26
shell: bash
27
- if: ${{ inputs.poetry-version != 'latest' }}
28
- pip install poetry==${{ inputs.poetry-version }}
29
+ pipx install poetry==${{ inputs.poetry-version }}
30
31
- if: ${{ inputs.poetry-plugins != '' }}
32
0 commit comments