Skip to content

Commit a8d8553

Browse files
committed
CI: Upgrade important CI environment
1 parent 958e926 commit a8d8553

19 files changed

Lines changed: 7907 additions & 8086 deletions

File tree

.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.1" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.11.2" # 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.1" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.11.2" # 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.1" # Keep this comment to allow automatic replacement of uv version
77+
default: "0.11.2" # 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.1" # Keep this comment to allow automatic replacement of uv version
43+
UV_VERSION: "0.11.2" # 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.1" # Keep this comment to allow automatic replacement of uv version
61+
UV_VERSION: "0.11.2" # Keep this comment to allow automatic replacement of uv version
6262
if: contains(fromJSON('[
6363
"ashb",
6464
"bugraoz93",

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ repos:
448448
types_or: [python, pyi]
449449
args: [--fix]
450450
require_serial: true
451-
additional_dependencies: ['ruff==0.15.7']
451+
additional_dependencies: ['ruff==0.15.8']
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.1
76+
ARG AIRFLOW_UV_VERSION=0.11.2
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
@@ -1777,7 +1777,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
17771777
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
17781778
ARG AIRFLOW_PIP_VERSION=26.0.1
17791779
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1780-
ARG AIRFLOW_UV_VERSION=0.11.1
1780+
ARG AIRFLOW_UV_VERSION=0.11.2
17811781
ARG AIRFLOW_PREK_VERSION="0.3.8"
17821782

17831783
# 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.7"
322+
pip install "ruff>=0.15.8"
323323
324324
2. **Running ruff**: Execute ``ruff`` to check your Dags for potential issues:
325325

dev/breeze/doc/ci/02_images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ can be used for CI images:
443443
| `ADDITIONAL_DEV_APT_DEPS` | | Additional apt dev dependencies installed in the first part of the image |
444444
| `ADDITIONAL_DEV_APT_ENV` | | Additional env variables defined when installing dev deps |
445445
| `AIRFLOW_PIP_VERSION` | `26.0.1` | `pip` version used. |
446-
| `AIRFLOW_UV_VERSION` | `0.11.1` | `uv` version used. |
446+
| `AIRFLOW_UV_VERSION` | `0.11.2` | `uv` version used. |
447447
| `AIRFLOW_PREK_VERSION` | `0.3.8` | `prek` version used. |
448448
| `AIRFLOW_USE_UV` | `true` | Whether to use UV for installation. |
449449
| `PIP_PROGRESS_BAR` | `on` | Progress bar for PIP installation |

0 commit comments

Comments
 (0)