Skip to content

Commit 0bfcf4e

Browse files
committed
CI: Upgrade important CI environment
1 parent a8e130d commit 0bfcf4e

46 files changed

Lines changed: 977 additions & 1038 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.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.10.12" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.11.1" # 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ inputs:
2424
default: "3.10"
2525
uv-version:
2626
description: 'uv version to use'
27-
default: "0.10.12" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.11.1" # Keep this comment to allow automatic replacement of uv version
2828
prek-version:
2929
description: 'prek version to use'
30-
default: "0.3.6" # Keep this comment to allow automatic replacement of prek version
30+
default: "0.3.8" # Keep this comment to allow automatic replacement of prek version
3131
save-cache:
3232
description: "Whether to save prek cache"
3333
required: true

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

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.10.12
76+
ARG AIRFLOW_UV_VERSION=0.11.1
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,7 @@ RUN SYSTEM=$(uname -s | tr '[:upper:]' '[:lower:]') \
16831683
&& chmod +x /usr/local/bin/helm
16841684

16851685
# Install mprocs - a modern process manager for managing multiple Airflow components
1686-
ARG MPROCS_VERSION="0.8.3"
1686+
ARG MPROCS_VERSION="0.9.2"
16871687

16881688
RUN SYSTEM=$(uname -s | tr '[:upper:]' '[:lower:]') \
16891689
&& PLATFORM="$(uname -m)" \
@@ -1777,8 +1777,8 @@ 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.10.12
1781-
ARG AIRFLOW_PREK_VERSION="0.3.6"
1780+
ARG AIRFLOW_UV_VERSION=0.11.1
1781+
ARG AIRFLOW_PREK_VERSION="0.3.8"
17821782

17831783
# UV_LINK_MODE=copy is needed since we are using cache mounted from the host
17841784
ENV AIRFLOW_PIP_VERSION=${AIRFLOW_PIP_VERSION} \

airflow-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ requires = [
2424
"pathspec==1.0.4",
2525
"pluggy==1.6.0",
2626
"smmap==5.0.3",
27-
"tomli==2.4.0; python_version < '3.11'",
27+
"tomli==2.4.1; python_version < '3.11'",
2828
"trove-classifiers==2026.1.14.14",
2929
]
3030
build-backend = "hatchling.build"

airflow-ctl-tests/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ requires = [
2222
"packaging==26.0",
2323
"pathspec==1.0.4",
2424
"pluggy==1.6.0",
25-
"tomli==2.4.0; python_version < '3.11'",
25+
"tomli==2.4.1; python_version < '3.11'",
2626
"trove-classifiers==2026.1.14.14",
2727
]
2828
build-backend = "hatchling.build"

airflow-ctl/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ requires = [
7474
"packaging==26.0",
7575
"pathspec==1.0.4",
7676
"pluggy==1.6.0",
77-
"tomli==2.4.0; python_version < '3.11'",
77+
"tomli==2.4.1; python_version < '3.11'",
7878
"trove-classifiers==2026.1.14.14",
7979
]
8080
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)