From aa23b3176ccab8f2ad406022f7743751a018d927 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Cerm=C3=A1k?= Date: Wed, 20 May 2026 14:43:54 +0200 Subject: [PATCH] Bump base image to 2026.05.0 with Python 3.14.5, use 3.14.5 in CI (#171482) --- .github/workflows/builder.yml | 2 +- .python-version | 2 +- script/hassfest/docker/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index edd8f80cfe7..a7b70df81c9 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -14,7 +14,7 @@ env: UV_HTTP_TIMEOUT: 60 UV_SYSTEM_PYTHON: "true" # Base image version from https://github.com/home-assistant/docker - BASE_IMAGE_VERSION: "2026.04.0" + BASE_IMAGE_VERSION: "2026.05.0" ARCHITECTURES: '["amd64", "aarch64"]' permissions: {} diff --git a/.python-version b/.python-version index 0104088a93f..a6d9ada03ee 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.14.4 +3.14.5 diff --git a/script/hassfest/docker/Dockerfile b/script/hassfest/docker/Dockerfile index 0395131153e..ccdd9446b90 100644 --- a/script/hassfest/docker/Dockerfile +++ b/script/hassfest/docker/Dockerfile @@ -2,7 +2,7 @@ # Automatically generated by hassfest. # # To update, run python3 -m script.hassfest -p docker -FROM python:3.14.4-alpine +FROM python:3.14.5-alpine ENV \ UV_SYSTEM_PYTHON=true \