From 8a8d1366b109a4439d59458b03cd9cabff4c767a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Dec 2025 08:10:42 +0000 Subject: [PATCH 1/2] Update pre-commit dependencies --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 264e840a9..464bc213b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,7 +18,7 @@ repos: require_serial: true - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.14.9 + rev: v0.14.10 hooks: # Sort the imports - id: ruff-check From e3aa2017e26970c3ad13d2eaaae2bdc8a45cd6d8 Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Wed, 24 Dec 2025 10:56:06 +0100 Subject: [PATCH 2/2] Change cron schedule to run on the first of each month --- .github/workflows/pre_commit_update_workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pre_commit_update_workflow.yml b/.github/workflows/pre_commit_update_workflow.yml index eba29f583..4acdc7f6a 100644 --- a/.github/workflows/pre_commit_update_workflow.yml +++ b/.github/workflows/pre_commit_update_workflow.yml @@ -8,7 +8,7 @@ on: # 3. Entry: Day of the month when the process will be started [1-28/29/30/31] # 4. Entry: Month of the year when the process will be started [1-12] # 5. Entry: Weekday when the process will be started [0-6] [0 is Sunday] - - cron: '0 8 * * 3' + - cron: '0 8 1 * *' # Allow manual triggering of the workflow workflow_dispatch: