Skip to content

Pre-Commit Update

Pre-Commit Update #9

name: Pre-Commit Update
on:
schedule:
- cron: "0 12 * * 0" # run once a week on Sunday
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
pre-commit-update:
strategy:
matrix:
python-version:
- 3.11
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Check for pre-commit dependency updates
# This fails, if there is a new version available,
# Update to the new version number in
# .pre-commit-config.yaml and config/default/pre-commit-config.yaml.j2.
run: |
pre-commit autoupdate
git diff --exit-code