-
-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Github actions sequence with ubuntu latest do not allow poetry installation #76
Comments
+1 |
y'all can replace this action in Ubuntu runners with:
|
I had a problem (whether or not using this GHA action) on the Previously my CI was: - name: Install Poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: 1.5.1 Now: - name: Install Poetry
shell: bash
run: |
pipx install poetry==1.8.4 --python python3.9
echo $PIPX_BIN_DIR >> $GITHUB_PATH |
@abatilo FYI, it looks like you re-tagged v2 from master, so v2 is now aligned with v3 and it broke my self-hosted runners. |
We had a breaking change and I should have stopped updating v2 as a moving tag. This was highlighted by @mmontesi in #76 (comment)
We had a breaking change and I should have stopped updating v2 as a moving tag. This was highlighted by @mmontesi in #76 (comment)
Thanks @abatilo , really appreciated. |
Today (Otc 14) a PR raised in my company's org triggered the following error:
Now all PRs on python repos that use this action are failing with the same error.
the sequence of github actions that lead to running actions-poetry v2:
The text was updated successfully, but these errors were encountered: