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 05f1500 commit 2656309Copy full SHA for 2656309
.github/actions/python-environment/action.yml
@@ -45,7 +45,8 @@ runs:
45
- name: Set up Poetry (${{ inputs.poetry-version }})
46
shell: bash
47
run: |
48
- curl -sSL https://install.python-poetry.org | POETRY_VERSION="${{ inputs.poetry-version }}" "$PYTHON_BINARY" -
+ wget --https-only -O /tmp/install_poetry.py https://install.python-poetry.org
49
+ POETRY_VERSION="${{ inputs.poetry-version }}" "$PYTHON_BINARY" /tmp/install_poetry.py
50
echo "$HOME/.local/bin" >> $GITHUB_PATH
51
env:
52
PYTHON_BINARY: "python${{ inputs.python-version }}"
0 commit comments