Skip to content

Commit c5e7d7b

Browse files
authored
CI: Upgrade important CI environment (#64782)
1 parent 529b49c commit c5e7d7b

14 files changed

Lines changed: 241 additions & 241 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.2" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.11.3" # 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.2" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.11.3" # 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.2" # Keep this comment to allow automatic replacement of uv version
77+
default: "0.11.3" # 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.2" # Keep this comment to allow automatic replacement of uv version
43+
UV_VERSION: "0.11.3" # 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.2" # Keep this comment to allow automatic replacement of uv version
61+
UV_VERSION: "0.11.3" # 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.11.2
76+
ARG AIRFLOW_UV_VERSION=0.11.3
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.2
1831+
ARG AIRFLOW_UV_VERSION=0.11.3
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

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.2` | `uv` version used. |
446+
| `AIRFLOW_UV_VERSION` | `0.11.3` | `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 |

dev/breeze/src/airflow_breeze/commands/release_management_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ class VersionedFile(NamedTuple):
260260

261261

262262
AIRFLOW_PIP_VERSION = "26.0.1"
263-
AIRFLOW_UV_VERSION = "0.11.2"
263+
AIRFLOW_UV_VERSION = "0.11.3"
264264
AIRFLOW_USE_UV = False
265265
GITPYTHON_VERSION = "3.1.46"
266266
RICH_VERSION = "14.3.3"

dev/breeze/src/airflow_breeze/global_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@
241241
ALLOWED_INSTALL_MYSQL_CLIENT_TYPES = ["mariadb"]
242242

243243
PIP_VERSION = "26.0.1"
244-
UV_VERSION = "0.11.2"
244+
UV_VERSION = "0.11.3"
245245

246246
# packages that providers docs
247247
REGULAR_DOC_PACKAGES = [

0 commit comments

Comments
 (0)