We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb6e02d commit eaff92fCopy full SHA for eaff92f
.github/workflows/cookiecutter.yml
@@ -31,7 +31,7 @@ jobs:
31
- name: apply additional changes and fixes
32
if: steps.changes.outputs.changed > 0
33
run: |
34
- poetry lock --no-update # add new dependencies
+ poetry lock # add new dependencies
35
poetry install
36
poetry run pre-commit run -a || true # we have to fix other issues manually
37
.github/workflows/dependencies.yml
@@ -51,7 +51,7 @@ jobs:
51
52
- name: Update outdated packages
53
if: ${{ steps.check_for_outdated_dependencies.outputs.body != 0 }}
54
- run: poetry lock
+ run: poetry lock --regenerate
55
56
# behaviour if PR already exists: https://github.com/marketplace/actions/create-pull-request#action-behaviour
57
- name: Create Pull Request
0 commit comments