You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
PDM update dependencies
v1.1
Example workflow:
name: Update dependencies
on:
schedule:
cron: "0 0 * * * *"
jobs:
update-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update dependencies
uses: pdm-project/update-deps-action@main
with:
# The personal access token, default: ${{ github.token }}
token: ${{ secrets.GH_TOKEN }}
# The commit message"
commit-message: "chore: Update pdm.lock"
# The PR title
pr-title: "Update dependencies"
# The update strategy, can be 'reuse', 'eager' or 'all'
update-strategy: eager