Skip to content

Commit 8719fec

Browse files
committed
Fix RAT workflow
1 parent f85e849 commit 8719fec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/rat.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ jobs:
4242

4343
- name: Download Apache RAT
4444
run: |
45-
curl -L -O https://downloads.apache.org/creadur/apache-rat-0.16.1/apache-rat-0.16.1-bin.tar.gz
46-
tar -xzf apache-rat-0.16.1-bin.tar.gz
45+
curl -L -O https://downloads.apache.org/creadur/apache-rat-0.17/apache-rat-0.17-bin.tar.gz
46+
tar -xzf apache-rat-0.17-bin.tar.gz
4747
4848
- name: Run RAT
4949
run: |
50-
java -jar apache-rat-0.16.1/apache-rat-0.16.1.jar -d . -E .rat-excludes > rat-report.txt
50+
java -jar apache-rat-0.17/apache-rat-0.17.jar -d . -E .rat-excludes > rat-report.txt
5151
cat rat-report.txt
5252
# Fail if unapproved licenses are found
5353
grep -qe '^0 Unknown Licenses' rat-report.txt && exit 0 || exit 1

0 commit comments

Comments
 (0)