From f169f99a5f0515da99fd1d61f733218639f24dc2 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 28 Mar 2026 13:03:24 +0100 Subject: [PATCH] chore(ci): pre-commit-update pin pre-commit --- .github/workflows/pre-commit-update.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit-update.yml b/.github/workflows/pre-commit-update.yml index 88c320f26..723a47d2a 100644 --- a/.github/workflows/pre-commit-update.yml +++ b/.github/workflows/pre-commit-update.yml @@ -27,11 +27,16 @@ jobs: - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: - python-version: "3.12" + python-version: "3.13" + - name: Install uv + uses: astral-sh/setup-uv@5a095e7a2014a4212f075830d4f7277575a9d098 # v7.3.1 + with: + activate-environment: true + python-version: "3.13" - name: Install pre-commit - run: pip install pre-commit + run: uv pip install $(grep -E "^pre-commit==" requirements-dev.txt) - name: Run auto-update run: pre-commit autoupdate