This is an automated email from the ASF dual-hosted git repository.

jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new f9640eda83d Prevent using v0-distroless in chart upgrades (#67690)
f9640eda83d is described below

commit f9640eda83d6b783aee34f030af8ac98bec095ec
Author: Jens Scheffler <[email protected]>
AuthorDate: Fri May 29 11:18:40 2026 +0200

    Prevent using v0-distroless in chart upgrades (#67690)
---
 scripts/ci/prek/update_chart_dependencies.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/scripts/ci/prek/update_chart_dependencies.py 
b/scripts/ci/prek/update_chart_dependencies.py
index d65642bbac2..8196067dfb7 100755
--- a/scripts/ci/prek/update_chart_dependencies.py
+++ b/scripts/ci/prek/update_chart_dependencies.py
@@ -45,6 +45,9 @@ def get_latest_prometheus_statsd_exporter_version() -> str:
         # Skip "v0"
         if name == "v0":
             continue
+        # Skip the ones advertised as distroless
+        if "distroless" in name:
+            continue
         return name
     raise RuntimeError("ERROR! No version found")
 

Reply via email to