Skip to content

Commit 7bdc7d6

Browse files
authored
chore: Fix update_deps workflow (#607)
1 parent f2808fb commit 7bdc7d6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/update_deps.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,17 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v4
2727
with:
28-
python-version: 3.7
28+
python-version: 3.13
2929

3030
- name: Update Dependencies
3131
run: |
32-
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
33-
source $HOME/.poetry/env
34-
poetry build
32+
pip install poetry
3533
poetry update
3634
3735
- name: Create Pull Request
3836
uses: peter-evans/create-pull-request@v3
3937
with:
38+
token: ${{ steps.generate_token.outputs.token }}
4039
commit-message: update dependencies
4140
title: Update Dependencies
4241
body: |

0 commit comments

Comments
 (0)