diff --git a/.github/workflows/basic-tests.yml b/.github/workflows/basic-tests.yml index 39ca7181c4727..7c2ce26114017 100644 --- a/.github/workflows/basic-tests.yml +++ b/.github/workflows/basic-tests.yml @@ -273,10 +273,6 @@ jobs: save-cache: false - name: "Autoupdate all prek hooks" run: prek autoupdate --cooldown-days 4 --freeze - - name: "Autoupdate Lucas-C hooks to bleeding edge" - run: prek autoupdate --bleeding-edge --freeze --repo https://github.com/Lucas-C/pre-commit-hooks - - name: "Autoupdate Octopin to bleeding edge" - run: prek autoupdate --bleeding-edge --freeze --repo https://github.com/eclipse-csi/octopin - name: "Check if there are any changes in prek hooks" run: | if ! git diff --exit-code; then diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6fe401673f70f..b17c26d2357e8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -31,8 +31,7 @@ repos: - id: check-hooks-apply name: Check if all hooks apply to the repository - repo: https://github.com/eclipse-csi/octopin - # We need this commit because if supports two spaces before comments (yamllint compatibility) - rev: 74fd075c7b326c771cd95ca86c59cbe65f0dda37 + rev: 67eac129b3e1d8ddb47e657bb2fda28c33d948ca # frozen: v0.1.4 hooks: - id: pin-versions name: Pin versions of dependencies in CI workflows (manual) @@ -268,7 +267,7 @@ repos: - id: python-no-log-warn name: Check if there are no deprecate log warn - repo: https://github.com/adrienverge/yamllint - rev: 79a6b2b1392eaf49cdd32ac4f14be1a809bbd8f7 # frozen: v1.37.1 + rev: cba56bcde1fdd01c1deb3f945e69764c291a6530 # frozen: v1.38.0 hooks: - id: yamllint name: Check YAML files with yamllint diff --git a/dev/breeze/src/airflow_breeze/commands/ci_commands.py b/dev/breeze/src/airflow_breeze/commands/ci_commands.py index 921e92c81a9f1..f9f65965c59af 100644 --- a/dev/breeze/src/airflow_breeze/commands/ci_commands.py +++ b/dev/breeze/src/airflow_breeze/commands/ci_commands.py @@ -630,8 +630,6 @@ def upgrade(target_branch: str, create_pr: bool | None, switch_to_base: bool | N # Define all upgrade commands to run (all run with check=False to continue on errors) upgrade_commands = [ "prek autoupdate --cooldown-days 4 --freeze", - "prek autoupdate --bleeding-edge --freeze --repo https://github.com/Lucas-C/pre-commit-hooks", - "prek autoupdate --bleeding-edge --freeze --repo https://github.com/eclipse-csi/octopin", "prek --all-files --verbose --hook-stage manual pin-versions", "prek --all-files --show-diff-on-failure --color always --verbose --hook-stage manual update-chart-dependencies", "prek --all-files --show-diff-on-failure --color always --verbose --hook-stage manual upgrade-important-versions",