This is an automated email from the ASF dual-hosted git repository.
lukaszlenart pushed a commit to branch github-actions
in repository https://gitbox.apache.org/repos/asf/struts-examples.git
The following commit(s) were added to refs/heads/github-actions by this push:
new 69517ec Reverts to pure mvn command to support all options
69517ec is described below
commit 69517ecbe2c955cd51a4bcddfda90c485637eec5
Author: Lukasz Lenart <[email protected]>
AuthorDate: Thu Oct 13 07:33:55 2022 +0200
Reverts to pure mvn command to support all options
---
.github/workflows/maven.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 6cacd70..9b6ffad 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -43,7 +43,7 @@ jobs:
distribution: adopt
java-version: ${{ matrix.java }}
- name: Build with Maven on Java ${{ matrix.java }}
- run: ./mvnw -B -V test --no-transfer-progress
+ run: mvn -B -V test --no-transfer-progress
- name: Apply automerge label
if: matrix.java == '17' && github.actor == 'dependabot[bot]'
run: gh pr edit "$PR_URL" --add-label "automerge"