Skip to content

Update dependencies #19

Update dependencies

Update dependencies #19

Workflow file for this run

############################################################################
# Bitbucket CLI (bb): Work seamlessly with Bitbucket from the command line
#
# Copyright (C) 2022 P S, Adithya (psadi) (ps.adithya@icloud.com)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
############################################################################
name: Update dependencies
on:
workflow_dispatch:
schedule:
- cron: 0 7 * * 0
jobs:
update-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- 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: all
save-strategy: minimum
unconstrained: false
install-plugins: "true"
sign-off-commit: "false"