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 f82850f commit 1450404Copy full SHA for 1450404
.github/actions/python-environment/action.yml
@@ -40,12 +40,12 @@ runs:
40
41
- name: Ensure curl
42
shell: bash
43
- run: sudo apt update && sudo apt install -y curl
+ run: sudo apt update && sudo apt install -y wget
44
45
- name: Set up Poetry (${{ inputs.poetry-version }})
46
47
run: |
48
- wget --https-only -O - https://install.python-poetry.org | POETRY_VERSION="${{ inputs.poetry-version }}" "$PYTHON_BINARY" -
+ wget --tries=10 --retry-delay 10 --retry-connrefused --https-only -O - https://install.python-poetry.org | POETRY_VERSION="${{ inputs.poetry-version }}" "$PYTHON_BINARY" -
49
echo "$HOME/.local/bin" >> $GITHUB_PATH
50
env:
51
PYTHON_BINARY: "python${{ inputs.python-version }}"
0 commit comments