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

vatsrahul1001 pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v3-2-test by this push:
     new 2e6c0f36563 [v3-2-test] Prevent using v0-distroless in chart upgrades 
(#67690) (#67696)
2e6c0f36563 is described below

commit 2e6c0f36563956254bd74e2c40f8c60e4e3b522d
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri May 29 17:55:13 2026 +0530

    [v3-2-test] Prevent using v0-distroless in chart upgrades (#67690) (#67696)
    
    (cherry picked from commit f9640eda83d6b783aee34f030af8ac98bec095ec)
    
    Co-authored-by: Jens Scheffler <[email protected]>
---
 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