Update dependencies #579
This file contains hidden or 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 dependencies | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| update-dependencies: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Update dependencies | |
| uses: pdm-project/update-deps-action@main | |
| with: | |
| # The personal access token, default: ${{ github.token }} | |
| token: ${{ secrets.GITHUB_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 | |
| # Whether to install PDM plugins before update | |
| install-plugins: "false" | |
| # Whether commit message contains signed-off-by | |
| sign-off-commit: "false" |