This is an automated email from the ASF dual-hosted git repository.
weizhouapache pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack-go.git
The following commit(s) were added to refs/heads/main by this push:
new 06f105c Upgrade Apache RAT from version 0.17 to 0.18 (#139)
06f105c is described below
commit 06f105c913c56924436b67006f3ad4a473c8995a
Author: dahn <[email protected]>
AuthorDate: Fri Jun 12 08:51:37 2026 +0200
Upgrade Apache RAT from version 0.17 to 0.18 (#139)
---
.github/workflows/rat.yaml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/rat.yaml b/.github/workflows/rat.yaml
index 35cd44f..41b20dc 100644
--- a/.github/workflows/rat.yaml
+++ b/.github/workflows/rat.yaml
@@ -25,12 +25,12 @@ jobs:
- name: Download Apache RAT
run: |
- curl -L -O
https://downloads.apache.org/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz
- tar -xzf apache-rat-0.17-bin.tar.gz
+ curl -L -O
https://downloads.apache.org/creadur/apache-rat-0.18/apache-rat-0.18-bin.tar.gz
+ tar -xzf apache-rat-0.18-bin.tar.gz
- name: Run RAT
run: |
- java -jar apache-rat-0.17/apache-rat-0.17.jar -d . -E .rat-excludes
> rat-report.txt
+ java -jar apache-rat-0.18/apache-rat-0.18.jar -d . -E .rat-excludes
> rat-report.txt
cat rat-report.txt
# Fail if unapproved licenses are found
grep -qe '^\s*Unapproved:\s*0\s*A count of unapproved licenses.$'
rat-report.txt && exit 0 || exit 1