This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 5ce3a9130c0 Fixing new update installer check errors in CI (#48081)
5ce3a9130c0 is described below
commit 5ce3a9130c02bbd65b9e739319c25a96bc0ff498
Author: Amogh Desai <[email protected]>
AuthorDate: Sat Mar 22 02:22:18 2025 +0530
Fixing new update installer check errors in CI (#48081)
* Fixing new upgrade checks issues in CI
* upgrade fixes
* undoing some random update
---
.pre-commit-config.yaml | 4 ++--
scripts/ci/pre_commit/update_installers_and_pre_commit.py | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 36cec5f5a4a..7f899ca2fd4 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -270,7 +270,7 @@ repos:
- id: python-no-log-warn
name: Check if there are no deprecate log warn
- repo: https://github.com/adrienverge/yamllint
- rev: v1.35.1
+ rev: v1.36.2
hooks:
- id: yamllint
name: Check YAML files with yamllint
@@ -314,7 +314,7 @@ repos:
-
--skip=providers/.*/src/airflow/providers/*/*.rst,providers/*/docs/changelog.rst,docs/*/commits.rst,providers/*/docs/commits.rst,providers/*/*/docs/commits.rst,docs/apache-airflow/tutorial/pipeline_example.csv,*.min.js,*.lock,INTHEWILD.md
- --exclude-file=.codespellignorelines
- repo: https://github.com/woodruffw/zizmor-pre-commit
- rev: v1.4.1
+ rev: v1.5.1
hooks:
- id: zizmor
name: Run zizmor to check for github workflow syntax errors
diff --git a/scripts/ci/pre_commit/update_installers_and_pre_commit.py
b/scripts/ci/pre_commit/update_installers_and_pre_commit.py
index 318049b6b15..6949f1670cf 100755
--- a/scripts/ci/pre_commit/update_installers_and_pre_commit.py
+++ b/scripts/ci/pre_commit/update_installers_and_pre_commit.py
@@ -26,7 +26,7 @@ from pathlib import Path
import requests
sys.path.insert(0, str(Path(__file__).parent.resolve())) # make sure
common_precommit_utils is imported
-from common_precommit_utils import AIRFLOW_CORE_SOURCES_PATH,
AIRFLOW_ROOT_PATH, console
+from common_precommit_utils import AIRFLOW_CORE_ROOT_PATH, AIRFLOW_ROOT_PATH,
console
# List of files to update and whether to keep total length of the original
value when replacing.
FILES_TO_UPDATE: list[tuple[Path, bool]] = [
@@ -50,7 +50,7 @@ FILES_TO_UPDATE: list[tuple[Path, bool]] = [
(AIRFLOW_ROOT_PATH / ".github" / "actions" / "install-pre-commit" /
"action.yml", False),
(AIRFLOW_ROOT_PATH / "dev/" / "breeze" / "doc" / "ci" / "02_images.md",
True),
(AIRFLOW_ROOT_PATH / ".pre-commit-config.yaml", False),
- (AIRFLOW_CORE_SOURCES_PATH / "pyproject.toml", False),
+ (AIRFLOW_CORE_ROOT_PATH / "pyproject.toml", False),
]