Skip to content

Commit eaff92f

Browse files
committed
Update workflows to accomodate poetry v2
1 parent eb6e02d commit eaff92f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cookiecutter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: apply additional changes and fixes
3232
if: steps.changes.outputs.changed > 0
3333
run: |
34-
poetry lock --no-update # add new dependencies
34+
poetry lock # add new dependencies
3535
poetry install
3636
poetry run pre-commit run -a || true # we have to fix other issues manually
3737

.github/workflows/dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Update outdated packages
5353
if: ${{ steps.check_for_outdated_dependencies.outputs.body != 0 }}
54-
run: poetry lock
54+
run: poetry lock --regenerate
5555

5656
# behaviour if PR already exists: https://github.com/marketplace/actions/create-pull-request#action-behaviour
5757
- name: Create Pull Request

0 commit comments

Comments
 (0)