This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
The following commit(s) were added to refs/heads/master by this push:
new 2500e894 tweak github actions
2500e894 is described below
commit 2500e894986586bbc74799c6b1d4c15072a6b4f9
Author: Paul King <[email protected]>
AuthorDate: Sat Jan 25 15:21:32 2025 +1000
tweak github actions
---
.github/workflows/build-check.yml | 2 +-
.github/workflows/license-check.yml | 7 ++-----
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/build-check.yml
b/.github/workflows/build-check.yml
index 14bf00dc..6c57d6d7 100644
--- a/.github/workflows/build-check.yml
+++ b/.github/workflows/build-check.yml
@@ -40,7 +40,7 @@ jobs:
- name: Check firefox version
run: /usr/bin/firefox --version
- name: Build and run tests
- run: ./gradlew -Pci --no-daemon --no-build-cache check
+ run: ./gradlew -Pci --no-daemon --no-build-cache check -x rat # rat in
separate workflow for fast feedback
timeout-minutes: 60
- name: Upload reports
uses: actions/upload-artifact@v4
diff --git a/.github/workflows/license-check.yml
b/.github/workflows/license-check.yml
index 49838d9c..abcda90a 100644
--- a/.github/workflows/license-check.yml
+++ b/.github/workflows/license-check.yml
@@ -33,11 +33,8 @@ jobs:
java-version: 21
check-latest: true
- uses: gradle/actions/setup-gradle@v4
- - name: Check licenses with rat
- run: ./gradlew --no-daemon rat
- timeout-minutes: 60
- - name: Check licenses with license plugin
- run: ./gradlew --no-daemon checkLicense
+ - name: Check licenses and dependencies
+ run: ./gradlew --no-daemon rat checkLicense depUp
timeout-minutes: 60
- name: Upload reports
uses: actions/upload-artifact@v4