Update dependencies #43
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
# GitHub Workflow to update pdm backend dependencies using Dependabot | |
# | |
name: Update dependencies | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
update-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update dependencies | |
uses: pdm-project/update-deps-action@main | |
with: | |
commit-message: "chore: Update backend dependencies" | |
# Ignore the version constraint of packages in pyproject.toml | |
# so that deps are updated to the latest version | |
unconstrained: true |