Skip to content

Commit 4d60309

Browse files
committed
build(ci): follow docs on poetry installation in GH actions
1 parent 4a38ba1 commit 4d60309

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci-community.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ jobs:
4747
# - k3s
4848
runs-on: ${{ matrix.runtime.machine }}
4949
steps:
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v4
51+
- name: Setup Poetry
52+
run: pipx install poetry
5153
- name: Setup python ${{ matrix.runtime.python-version }}
5254
uses: actions/setup-python@v4
5355
with:

.github/workflows/ci-core.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ jobs:
2424
# python-version: "3.11"
2525
runs-on: ${{ matrix.runtime.machine }}
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
28+
- name: Setup Poetry
29+
run: pipx install poetry
2830
- name: Setup python ${{ matrix.runtime.python-version }}
29-
uses: actions/setup-python@v4
31+
uses: actions/setup-python@v5
3032
with:
3133
python-version: ${{ matrix.runtime.python-version }}
3234
cache: poetry

0 commit comments

Comments
 (0)