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

potiuk 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 3aa2745022d Use archive.apache.org for Apache RAT download in release 
docs (#64053)
3aa2745022d is described below

commit 3aa2745022d4cd23946e6c4846ba20cfeea486d4
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sat Mar 21 22:50:12 2026 +0100

    Use archive.apache.org for Apache RAT download in release docs (#64053)
    
    The dlcdn.apache.org mirror only serves the current latest release of
    Apache RAT. When a newer version is released, the hardcoded 0.17 URL
    breaks. Switching to archive.apache.org/dist makes the URL permanent
    and independent of what the current latest release is.
    
    Also fixes helm chart release doc: corrects temp directory paths for
    source verification to use consistent /tmp/apache/airflow-helm-chart-src.
---
 dev/README_RELEASE_AIRFLOW.md       | 2 +-
 dev/README_RELEASE_AIRFLOWCTL.md    | 2 +-
 dev/README_RELEASE_HELM_CHART.md    | 8 ++++----
 dev/README_RELEASE_PROVIDERS.md     | 2 +-
 dev/README_RELEASE_PYTHON_CLIENT.md | 2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev/README_RELEASE_AIRFLOW.md b/dev/README_RELEASE_AIRFLOW.md
index a382850a22b..e59f7db4f39 100644
--- a/dev/README_RELEASE_AIRFLOW.md
+++ b/dev/README_RELEASE_AIRFLOW.md
@@ -904,7 +904,7 @@ You can run this command to do it for you (including 
checksum verification for y
 
 ```shell script
 # Checksum value is taken from 
https://downloads.apache.org/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz.sha512
-wget -q 
https://dlcdn.apache.org//creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz -O 
/tmp/apache-rat-0.17-bin.tar.gz
+wget -q 
https://archive.apache.org/dist/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz
 -O /tmp/apache-rat-0.17-bin.tar.gz
 echo 
"32848673dc4fb639c33ad85172dfa9d7a4441a0144e407771c9f7eb6a9a0b7a9b557b9722af968500fae84a6e60775449d538e36e342f786f20945b1645294a0
  /tmp/apache-rat-0.17-bin.tar.gz" | sha512sum -c -
 tar -xzf /tmp/apache-rat-0.17-bin.tar.gz -C /tmp
 ```
diff --git a/dev/README_RELEASE_AIRFLOWCTL.md b/dev/README_RELEASE_AIRFLOWCTL.md
index 2715b5b66ac..6c7cdcd205b 100644
--- a/dev/README_RELEASE_AIRFLOWCTL.md
+++ b/dev/README_RELEASE_AIRFLOWCTL.md
@@ -551,7 +551,7 @@ You can run this command to do it for you (including 
checksum verification for y
 
 ```shell script
 # Checksum value is taken from 
https://downloads.apache.org/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz.sha512
-wget -q 
https://dlcdn.apache.org//creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz -O 
/tmp/apache-rat-0.17-bin.tar.gz
+wget -q 
https://archive.apache.org/dist/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz
 -O /tmp/apache-rat-0.17-bin.tar.gz
 echo 
"32848673dc4fb639c33ad85172dfa9d7a4441a0144e407771c9f7eb6a9a0b7a9b557b9722af968500fae84a6e60775449d538e36e342f786f20945b1645294a0
  /tmp/apache-rat-0.17-bin.tar.gz" | sha512sum -c -
 tar -xzf /tmp/apache-rat-0.17-bin.tar.gz -C /tmp
 ```
diff --git a/dev/README_RELEASE_HELM_CHART.md b/dev/README_RELEASE_HELM_CHART.md
index 96635c69fb5..50f072f303c 100644
--- a/dev/README_RELEASE_HELM_CHART.md
+++ b/dev/README_RELEASE_HELM_CHART.md
@@ -551,7 +551,7 @@ You can run this command to do it for you (including 
checksum verification for y
 
 ```shell script
 # Checksum value is taken from 
https://downloads.apache.org/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz.sha512
-wget -q 
https://dlcdn.apache.org//creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz -O 
/tmp/apache-rat-0.17-bin.tar.gz
+wget -q 
https://archive.apache.org/dist/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz
 -O /tmp/apache-rat-0.17-bin.tar.gz
 echo 
"32848673dc4fb639c33ad85172dfa9d7a4441a0144e407771c9f7eb6a9a0b7a9b557b9722af968500fae84a6e60775449d538e36e342f786f20945b1645294a0
  /tmp/apache-rat-0.17-bin.tar.gz" | sha512sum -c -
 tar -xzf /tmp/apache-rat-0.17-bin.tar.gz -C /tmp
 ```
@@ -560,12 +560,12 @@ tar -xzf /tmp/apache-rat-0.17-bin.tar.gz -C /tmp
 * Enter the sources folder run the check
 
 ```shell
-rm -rf /tmp/apache/airflow-src && mkdir -p /tmp/apache-airflow-src && tar -xzf 
${SVN_REPO_ROOT}/dev/airflow/helm-chart/${VERSION_RC}/airflow-chart-*-source.tar.gz
 --strip-components 1 -C /tmp/apache-airflow-src
+rm -rf /tmp/apache/airflow-helm-chart-src && mkdir -p 
/tmp/apache/airflow-helm-chart-src && tar -xzf 
${SVN_REPO_ROOT}/dev/airflow/helm-chart/${VERSION_RC}/airflow-chart-*-source.tar.gz
 --strip-components 1 -C /tmp/apache/airflow-helm-chart-src
 ```
 
 ```shell
-cp ${AIRFLOW_REPO_ROOT}/.rat-excludes /tmp/apache-airflow-src/.rat-excludes
-java -jar /tmp/apache-rat-0.17/apache-rat-0.17.jar --input-exclude-file 
/tmp/apache-airflow-src/.rat-excludes /tmp/apache-airflow-src/ | grep -E "! 
|INFO: "
+cp ${AIRFLOW_REPO_ROOT}/.rat-excludes 
/tmp/apache/airflow-helm-chart-src/.rat-excludes
+java -jar /tmp/apache-rat-0.17/apache-rat-0.17.jar --input-exclude-file 
/tmp/apache/airflow-helm-chart-src/.rat-excludes 
/tmp/apache/airflow-helm-chart-src/ | grep -E "! |INFO: "
 ```
 
 where `.rat-excludes` is the file in the root of Chart source code.
diff --git a/dev/README_RELEASE_PROVIDERS.md b/dev/README_RELEASE_PROVIDERS.md
index fd53cd5c925..745ab206554 100644
--- a/dev/README_RELEASE_PROVIDERS.md
+++ b/dev/README_RELEASE_PROVIDERS.md
@@ -844,7 +844,7 @@ You can run this command to do it for you (including 
checksum verification for y
 
 ```shell script
 # Checksum value is taken from 
https://downloads.apache.org/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz.sha512
-wget -q 
https://dlcdn.apache.org//creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz -O 
/tmp/apache-rat-0.17-bin.tar.gz
+wget -q 
https://archive.apache.org/dist/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz
 -O /tmp/apache-rat-0.17-bin.tar.gz
 echo 
"32848673dc4fb639c33ad85172dfa9d7a4441a0144e407771c9f7eb6a9a0b7a9b557b9722af968500fae84a6e60775449d538e36e342f786f20945b1645294a0
  /tmp/apache-rat-0.17-bin.tar.gz" | sha512sum -c -
 tar -xzf /tmp/apache-rat-0.17-bin.tar.gz -C /tmp
 ```
diff --git a/dev/README_RELEASE_PYTHON_CLIENT.md 
b/dev/README_RELEASE_PYTHON_CLIENT.md
index 19cc2469f21..dff1d511bc8 100644
--- a/dev/README_RELEASE_PYTHON_CLIENT.md
+++ b/dev/README_RELEASE_PYTHON_CLIENT.md
@@ -463,7 +463,7 @@ You can run this command to do it for you (including 
checksum verification for y
 
 ```shell script
 # Checksum value is taken from 
https://downloads.apache.org/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz.sha512
-wget -q 
https://dlcdn.apache.org//creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz -O 
/tmp/apache-rat-0.17-bin.tar.gz
+wget -q 
https://archive.apache.org/dist/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz
 -O /tmp/apache-rat-0.17-bin.tar.gz
 echo 
"32848673dc4fb639c33ad85172dfa9d7a4441a0144e407771c9f7eb6a9a0b7a9b557b9722af968500fae84a6e60775449d538e36e342f786f20945b1645294a0
  /tmp/apache-rat-0.17-bin.tar.gz" | sha512sum -c -
 tar -xzf /tmp/apache-rat-0.17-bin.tar.gz -C /tmp
 ```

Reply via email to