-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update deps and add update workflow
- Loading branch information
Showing
5 changed files
with
271 additions
and
229 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
name: Update Python dependencies with PDM | ||
# Other dependencies updates are managed by renovatebot | ||
|
||
on: | ||
schedule: | ||
- cron: "0 12 * * *" | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
update-dependencies: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Update dependencies with PDM | ||
uses: pdm-project/update-deps-action@main | ||
with: | ||
# The personal access token, default: ${{ github.token }} | ||
token: ${{ github.token }} | ||
# The commit message" | ||
commit-message: "chore(deps): Update pdm.lock" | ||
# The PR title | ||
pr-title: "chore(deps): Update Python dependencies with PDM" | ||
# The update strategy, can be 'reuse', 'eager' or 'all' | ||
update-strategy: all | ||
# Whether to install PDM plugins before update | ||
install-plugins: "true" | ||
# Whether commit message contains signed-off-by | ||
sign-off-commit: "true" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
pdm 2.11.1 | ||
python 3.11.7 | ||
pdm 2.12.2 | ||
python 3.12.1 |
Oops, something went wrong.