We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dfcb23 commit 1510a31Copy full SHA for 1510a31
.github/workflows/main.yml
@@ -41,10 +41,17 @@ jobs:
41
- uses: actions/setup-python@v5
42
with:
43
python-version: '${{ matrix.python-version }}'
44
+ - name: Get Poetry version from .mise.toml
45
+ uses: SebRollen/toml-action@v1.0.2
46
+ id: get-poetry-version
47
+ with:
48
+ file: .mise.toml
49
+ field: tools.poetry
50
+
51
- name: Install poetry
52
uses: abatilo/actions-poetry@v4.0.0
53
- poetry-version: '1.5.1'
54
+ poetry-version: ${{ steps.get-poetry-version.outputs.value }}
55
- uses: actions/cache@v4
56
57
path: ~/.local/share/virtualenvs
.mise.toml
@@ -1,4 +1,4 @@
1
[tools]
2
python = '3.13'
3
-poetry = '1.5.1'
+poetry = '2.1.2'
4
pre-commit = '4.2.0'
0 commit comments