This is an automated email from the ASF dual-hosted git repository. pottlinger pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
commit 21f0004bce8c1c88dc2d1b9566a5c4e70ba16f1a Author: P. Ottlinger <[email protected]> AuthorDate: Tue Jan 9 00:21:58 2024 +0100 RAT-342: Enable maven wrapper on GHA --- .github/workflows/maven.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index b221a34b..e3a24dcc 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -58,13 +58,13 @@ jobs: cache: 'maven' - name: Build with Maven - run: mvn -e -B -V -ntp clean install + run: ./mvnw -e -B -V -ntp clean install - name: Build site - run: mvn -e -B -V -ntp site:site + run: ./mvnw -e -B -V -ntp site:site - name: Generate javadoc - run: mvn -e -B -V -ntp javadoc:javadoc + run: ./mvnw -e -B -V -ntp javadoc:javadoc # as of 20220505: Invalid workflow file # The workflow is not valid. .github/workflows/maven.yml (Line: 55, Col: 1): Unexpected value 'notifications'
