Pre-commit auto-update #82
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # pre-commit auto-update workflow | |
| # Dependabot does not support updating pre-commit so this workflow will do that | |
| name: Pre-commit auto-update | |
| on: | |
| schedule: | |
| - cron: '0 0 * * 0' # Runs every Sunday at 00:00 UTC | |
| workflow_dispatch: {} # Allows manual executions | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| auto-update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Sync dependencies | |
| run: uv sync | |
| - name: Run pre-commit autoupdate | |
| run: uv run pre-commit autoupdate | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v8 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: update/pre-commit-autoupdate | |
| title: Auto-update pre-commit hooks | |
| commit-message: Auto-update pre-commit hooks | |
| body: Update versions of tools in pre-commit configs to latest version | |
| labels: dependencies |