Skip to content

Commit a17d6b2

Browse files
authored
[v3-2-test] CI: Upgrade important CI environment (#65213)
1 parent 778c688 commit a17d6b2

22 files changed

Lines changed: 843 additions & 830 deletions

.github/SECURITY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
55
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
6+
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
67

78
- [Apache Airflow Security](#apache-airflow-security)
89
- [What should be and should NOT be reported ?](#what-should-be-and-should-not-be-reported-)

.github/actions/breeze/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ inputs:
2424
default: "3.10"
2525
uv-version:
2626
description: 'uv version to use'
27-
default: "0.11.3" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.11.6" # Keep this comment to allow automatic replacement of uv version
2828
outputs:
2929
host-python-version:
3030
description: Python version used in host

.github/actions/install-prek/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ inputs:
2424
default: "3.10"
2525
uv-version:
2626
description: 'uv version to use'
27-
default: "0.11.3" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.11.6" # Keep this comment to allow automatic replacement of uv version
2828
prek-version:
2929
description: 'prek version to use'
3030
default: "0.3.8" # Keep this comment to allow automatic replacement of prek version

.github/workflows/basic-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ on: # yamllint disable-line rule:truthy
7474
type: string
7575
uv-version:
7676
description: 'uv version to use'
77-
default: "0.11.3" # Keep this comment to allow automatic replacement of uv version
77+
default: "0.11.6" # Keep this comment to allow automatic replacement of uv version
7878
type: string
7979
platform:
8080
description: 'Platform for the build - linux/amd64 or linux/arm64'

.github/workflows/ci-amd-arm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ env:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4141
GITHUB_USERNAME: ${{ github.actor }}
4242
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
43-
UV_VERSION: "0.11.3" # Keep this comment to allow automatic replacement of uv version
43+
UV_VERSION: "0.11.6" # Keep this comment to allow automatic replacement of uv version
4444
VERBOSE: "true"
4545

4646
concurrency:

.github/workflows/release_dockerhub_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
AIRFLOW_VERSION: ${{ github.event.inputs.airflowVersion }}
5959
AMD_ONLY: ${{ github.event.inputs.amdOnly }}
6060
LIMIT_PYTHON_VERSIONS: ${{ github.event.inputs.limitPythonVersions }}
61-
UV_VERSION: "0.11.3" # Keep this comment to allow automatic replacement of uv version
61+
UV_VERSION: "0.11.6" # Keep this comment to allow automatic replacement of uv version
6262
if: contains(fromJSON('[
6363
"ashb",
6464
"bugraoz93",

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repos:
3131
- id: check-hooks-apply
3232
name: Check if all hooks apply to the repository
3333
- repo: https://github.com/thlorenz/doctoc.git
34-
rev: d7815f1f950f8d5ec933fa4f70208bf316bb13f8 # frozen: v2.3.0
34+
rev: 8c02ba71e7e9c5c90d85f05b676523cb8fd897c6 # frozen: v2.4.0
3535
hooks:
3636
- id: doctoc
3737
name: Add TOC for Markdown and RST files
@@ -448,7 +448,7 @@ repos:
448448
types_or: [python, pyi]
449449
args: [--fix]
450450
require_serial: true
451-
additional_dependencies: ['ruff==0.15.9']
451+
additional_dependencies: ['ruff==0.15.10']
452452
exclude: ^airflow-core/tests/unit/dags/test_imports\.py$|^performance/tests/test_.*\.py$
453453
- id: ruff-format
454454
name: Run 'ruff format'

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ ARG PYTHON_LTO="true"
7373
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
7474
ARG AIRFLOW_PIP_VERSION=26.0.1
7575
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
76-
ARG AIRFLOW_UV_VERSION=0.11.3
76+
ARG AIRFLOW_UV_VERSION=0.11.6
7777
ARG AIRFLOW_USE_UV="false"
7878
ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow"
7979
ARG AIRFLOW_IMAGE_README_URL="https://raw.githubusercontent.com/apache/airflow/main/docs/docker-stack/README.md"

Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1828,7 +1828,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
18281828
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
18291829
ARG AIRFLOW_PIP_VERSION=26.0.1
18301830
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1831-
ARG AIRFLOW_UV_VERSION=0.11.3
1831+
ARG AIRFLOW_UV_VERSION=0.11.6
18321832
ARG AIRFLOW_PREK_VERSION="0.3.8"
18331833

18341834
# UV_LINK_MODE=copy is needed since we are using cache mounted from the host

airflow-core/docs/best-practices.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ Installing and Using ruff
319319

320320
.. code-block:: bash
321321
322-
pip install "ruff>=0.15.9"
322+
pip install "ruff>=0.15.10"
323323
324324
2. **Running ruff**: Execute ``ruff`` to check your Dags for potential issues:
325325

0 commit comments

Comments
 (0)