Skip to content

Commit ec07e8d

Browse files
committed
ci(github-actions): Upgrade uv and ruff versions to fix CI
1 parent bc6b330 commit ec07e8d

File tree

17 files changed

+957
-957
lines changed

17 files changed

+957
-957
lines changed

.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.9.5" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.9.7" # 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.9.5" # Keep this comment to allow automatic replacement of uv version
27+
default: "0.9.7" # Keep this comment to allow automatic replacement of uv version
2828
prek-version:
2929
description: 'prek version to use'
3030
default: "0.2.12" # 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
@@ -66,7 +66,7 @@ on: # yamllint disable-line rule:truthy
6666
type: string
6767
uv-version:
6868
description: 'uv version to use'
69-
default: "0.9.5" # Keep this comment to allow automatic replacement of uv version
69+
default: "0.9.7" # Keep this comment to allow automatic replacement of uv version
7070
type: string
7171
platform:
7272
description: 'Platform for the build - linux/amd64 or linux/arm64'

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

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ repos:
347347
types_or: [python, pyi]
348348
args: [--fix]
349349
require_serial: true
350-
additional_dependencies: ['ruff==0.14.2']
350+
additional_dependencies: ['ruff==0.14.3']
351351
exclude: ^airflow-core/tests/unit/dags/test_imports\.py$|^performance/tests/test_.*\.py$
352352
- id: ruff-format
353353
name: Run 'ruff format'

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ARG AIRFLOW_PYTHON_VERSION="3.12.12"
5656
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
5757
ARG AIRFLOW_PIP_VERSION=25.3
5858
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
59-
ARG AIRFLOW_UV_VERSION=0.9.5
59+
ARG AIRFLOW_UV_VERSION=0.9.7
6060
ARG AIRFLOW_USE_UV="false"
6161
ARG UV_HTTP_TIMEOUT="300"
6262
ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow"

Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1656,7 +1656,7 @@ COPY --from=scripts common.sh install_packaging_tools.sh install_additional_depe
16561656
# Also use `force pip` label on your PR to swap all places we use `uv` to `pip`
16571657
ARG AIRFLOW_PIP_VERSION=25.3
16581658
# ARG AIRFLOW_PIP_VERSION="git+https://github.com/pypa/pip.git@main"
1659-
ARG AIRFLOW_UV_VERSION=0.9.5
1659+
ARG AIRFLOW_UV_VERSION=0.9.7
16601660
ARG AIRFLOW_PREK_VERSION="0.2.12"
16611661

16621662
# 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
@@ -310,7 +310,7 @@ Installing and Using ruff
310310

311311
.. code-block:: bash
312312
313-
pip install "ruff>=0.14.2"
313+
pip install "ruff>=0.14.3"
314314
315315
2. **Running ruff**: Execute ``ruff`` to check your Dags for potential issues:
316316

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` | `25.3` | `pip` version used. |
446-
| `AIRFLOW_UV_VERSION` | `0.9.5` | `uv` version used. |
446+
| `AIRFLOW_UV_VERSION` | `0.9.7` | `uv` version used. |
447447
| `AIRFLOW_PREK_VERSION` | `0.2.12` | `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
@@ -253,7 +253,7 @@ class VersionedFile(NamedTuple):
253253

254254

255255
AIRFLOW_PIP_VERSION = "25.3"
256-
AIRFLOW_UV_VERSION = "0.9.5"
256+
AIRFLOW_UV_VERSION = "0.9.7"
257257
AIRFLOW_USE_UV = False
258258
GITPYTHON_VERSION = "3.1.45"
259259
RICH_VERSION = "14.2.0"

0 commit comments

Comments
 (0)