Skip to content

Update pre-commit hooks #700

Update pre-commit hooks

Update pre-commit hooks #700

name: Update pre-commit hooks
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
env:
FORCE_COLOR: 1
jobs:
auto-update:
name: Update pre-commit hooks
if: ${{ github.repository == 'vacanza/holidays' }}
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065
with:
cache: pip
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install pre-commit
- name: Use pre-commit environment cache
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684
with:
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
path: ~/.cache/pre-commit
restore-keys: ${{ runner.os }}-pre-commit-
- name: Run pre-commit automatic update
run: |
pre-commit autoupdate
pre-commit run --all-files
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e
with:
base: dev
body: Update pre-commit hooks to their latest versions.
branch: update-pre-commit-hooks
commit-message: 'chore: Update pre-commit hooks'
committer: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
delete-branch: true
title: Update pre-commit hooks
token: ${{ github.token }}