Skip to content

Commit

Permalink
chore(deps): configure automated PDM dependencies updates
Browse files Browse the repository at this point in the history
  • Loading branch information
NekoAria committed Dec 2, 2024
1 parent 30c8172 commit d9c5035
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Update PDM Dependencies

on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
update-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Update dependencies
uses: pdm-project/update-deps-action@v1
with:
commit-message: "chore(deps): Update pdm.lock"
pr-title: "chore(deps): Update PDM dependencies"
update-strategy: "reuse"
save-strategy: "compatible"

0 comments on commit d9c5035

Please sign in to comment.