5eee380dfe
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 5 to 6. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v5...v6) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
name: Update dependencies
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: 30 3 * * *
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
update-dependencies:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- cmd: pipx run poetry lock --no-interaction
|
|
commit-msg: Update poetry.lock
|
|
branch: update/poetry-lock
|
|
- cmd: pipx run pre-commit autoupdate
|
|
commit-msg: Update .pre-commit-config.yaml
|
|
branch: update/pre-commit-config
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: ${{ matrix.cmd }}
|
|
- uses: peter-evans/create-pull-request@v6
|
|
with:
|
|
token: ${{ secrets.PAT }}
|
|
commit-message: ${{ matrix.commit-msg }}
|
|
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
branch: ${{ matrix.branch }}
|
|
title: ${{ matrix.commit-msg }}
|
|
body:
|