Update Python dependencies with PDM #93
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Update Python dependencies with PDM | |
# Other dependencies updates are managed by renovatebot | |
on: | |
schedule: | |
- cron: "0 10 * * MON" | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update dependencies with PDM | |
uses: pdm-project/update-deps-action@main | |
with: | |
# The personal access token, default: ${{ github.token }} | |
token: ${{ github.token }} | |
# The commit message" | |
commit-message: "chore(deps): Update pdm.lock" | |
# The PR title | |
pr-title: "chore(deps): Update Python dependencies with PDM" | |
# The update strategy, can be 'reuse', 'eager' or 'all' | |
update-strategy: all | |
# Whether to install PDM plugins before update | |
install-plugins: "true" | |
# Whether commit message contains signed-off-by | |
sign-off-commit: "true" |