Skip to content

Pre-commit auto-update #116

Pre-commit auto-update

Pre-commit auto-update #116

name: Pre-commit auto-update
on:
schedule:
- cron: "0 0 * * 1"
workflow_dispatch:
env:
PYTHON_VERSION_FOR_BUMPING: "3.10"
jobs:
pre-commit-autoupdate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ env.PYTHON_VERSION_FOR_BUMPING }}"
- name: Cache multiple paths
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.cache/pre-commit
key: ${{ runner.os }}-${{ env.PYTHON_VERSION_FOR_BUMPING }}-${{ hashFiles('**/.pre-commit-config.yaml') }}
- uses: browniebroke/pre-commit-autoupdate-action@main
- uses: peter-evans/create-pull-request@v7
if: always()
with:
token: ${{ secrets.PAT_TOKEN }}
branch: update/pre-commit-hooks
title: Update pre-commit hooks
commit-message: "chore: update pre-commit hooks"
body: Update versions of pre-commit hooks to latest version.