Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/basic-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,7 @@ jobs:
platform: ${{ inputs.platform }}
save-cache: false
- name: "Autoupdate all prek hooks"
run: prek auto-update --cooldown-days 4 --freeze
- name: "Autoupdate Lucas-C hooks to bleeding edge"
run: prek auto-update --bleeding-edge --freeze --repo https://github.com/Lucas-C/pre-commit-hooks
- name: "Autoupdate Octopin to bleeding edge"
run: prek auto-update --bleeding-edge --freeze --repo https://github.com/eclipse-csi/octopin
run: prek autoupdate --cooldown-days 4 --freeze
- name: "Check if there are any changes in prek hooks"
run: |
if ! git diff --exit-code; then
Expand Down
3 changes: 1 addition & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 1 addition & 3 deletions dev/breeze/src/airflow_breeze/commands/ci_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,9 +629,7 @@ 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 auto-update --cooldown-days 4 --freeze",
"prek auto-update --bleeding-edge --freeze --repo https://github.com/Lucas-C/pre-commit-hooks",
"prek auto-update --bleeding-edge --freeze --repo https://github.com/eclipse-csi/octopin",
"prek autoupdate --cooldown-days 4 --freeze",
"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",
Expand Down