Skip to content

Commit

Permalink
build(ci): follow docs on poetry installation in GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
totallyzen committed Jan 15, 2024
1 parent 4a38ba1 commit 4d60309
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci-community.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ jobs:
# - k3s
runs-on: ${{ matrix.runtime.machine }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Poetry
run: pipx install poetry
- name: Setup python ${{ matrix.runtime.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ jobs:
# python-version: "3.11"
runs-on: ${{ matrix.runtime.machine }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Poetry
run: pipx install poetry
- name: Setup python ${{ matrix.runtime.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.runtime.python-version }}
cache: poetry
Expand Down

0 comments on commit 4d60309

Please sign in to comment.