We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea24d97 commit 0bb42e3Copy full SHA for 0bb42e3
1 file changed
.github/workflows/dependabot-auto-merge.yaml
@@ -23,15 +23,20 @@ jobs:
23
ref: ${{ github.head_ref }}
24
token: ${{ secrets.GITHUB_TOKEN }}
25
26
- - name: Set up Python
27
- uses: actions/setup-python@v5
+ - name: setup python
+ uses: actions/setup-python@v6
28
with:
29
- python-version: '3.11'
+ python-version-file: "pyproject.toml"
30
31
- - name: Install Poetry
+ - name: setup poetry
32
+ uses: abatilo/actions-poetry@0dd19c9498c3dc8728967849d0d2eae428a8a3d8
33
+ with:
34
+ poetry-version: 2.1.2
35
+
36
+ - name: add poetry plugins
37
run: |
- curl -sSL https://install.python-poetry.org | python3 -
- echo "$HOME/.local/bin" >> $GITHUB_PATH
38
+ poetry self add "poetry-dynamic-versioning[plugin]"
39
+ poetry self add poetry-plugin-export
40
41
- name: Export requirements
42
run: make export-requirements
0 commit comments