Skip to content

Commit af9fb63

Browse files
committed
node: Install poetry via official method
1 parent 6c44790 commit af9fb63

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/node.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
- '3.11'
2424
- '3.12'
2525
- '3.13'
26-
poetry-version:
27-
- '1.6.1'
2826
runs-on: ubuntu-latest
2927
steps:
3028
- uses: actions/checkout@v4
@@ -35,9 +33,10 @@ jobs:
3533
- uses: actions/setup-python@v4
3634
with:
3735
python-version: ${{ matrix.python-version }}
38-
- uses: abatilo/[email protected]
39-
with:
40-
poetry-version: ${{ matrix.poetry-version }}
36+
- name: Setup Poetry
37+
run: |
38+
curl -sSL https://install.python-poetry.org | python3 -
39+
sudo ln -s /github/home/.local/bin/poetry /usr/bin/poetry
4140
- name: Install OS dependencies
4241
run: sudo apt-get update && sudo apt-get install -y flatpak-builder
4342
- name: Install Flatpak dependencies

0 commit comments

Comments
 (0)