Skip to content

Commit

Permalink
ci: gh-workflow to auto update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
psadi committed May 17, 2024
1 parent 6b21864 commit 3b477b2
Show file tree
Hide file tree
Showing 3 changed files with 162 additions and 139 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/update-deps.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Update dependencies

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

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

- name: Update dependencies
uses: pdm-project/update-deps-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore: Update pdm.lock"
pr-title: "auto: Update dependencies"
update-strategy: reuse
save-strategy: minimum
unconstrained: false
install-plugins: "false"
sign-off-commit: "false"
Loading

0 comments on commit 3b477b2

Please sign in to comment.