Skip to content

Commit 5846d09

Browse files
authored
ci: Freeze poetry version (#246)
1 parent baac390 commit 5846d09

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/integration-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
type: string
1313

1414
env:
15-
POETRY_VERSION: "1.7.1"
15+
POETRY_VERSION: "1.8"
1616
POETRY_URL: https://install.python-poetry.org
1717

1818
jobs:
@@ -43,7 +43,7 @@ jobs:
4343
})
4444
- name: Install Poetry
4545
run: |
46-
pipx install poetry
46+
pipx install poetry==1.8
4747
- name: Set up Python
4848
uses: actions/setup-python@v5
4949
with:

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v3
1919
- name: Install Poetry
2020
run: |
21-
pipx install poetry
21+
pipx install poetry==1.8
2222
- name: Set up Python
2323
uses: actions/setup-python@v5
2424
with:

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v3
2222
- name: Install Poetry
2323
run: |
24-
pipx install poetry
24+
pipx install poetry==1.8
2525
- name: Set up Python
2626
uses: actions/setup-python@v5
2727
with:

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v3
1919
- name: Install Poetry
2020
run: |
21-
pipx install poetry
21+
pipx install poetry==1.8
2222
- name: Set up Python
2323
uses: actions/setup-python@v5
2424
with:
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/checkout@v3
5252
- name: Install Poetry
5353
run: |
54-
pipx install poetry
54+
pipx install poetry==1.8
5555
- name: Set up Python
5656
uses: actions/setup-python@v5
5757
with:

0 commit comments

Comments
 (0)