[maven-gh-actions-shared] 01/01: Update maven-verify.yml

2023-07-02 Thread slachiewicz
This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch maven-393
in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git

commit 07da1218472389250d55edd290a74725244f1109
Author: Sylwester Lachiewicz 
AuthorDate: Sun Jul 2 12:50:22 2023 +0200

Update maven-verify.yml
---
 .github/workflows/maven-verify.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven-verify.yml 
b/.github/workflows/maven-verify.yml
index fd430fa..fb5191a 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -47,7 +47,7 @@ on:
   maven-matrix:
 description: The Maven version matrix as json array
 required: false
-default: '[ "3.9.2" ]'
+default: '[ "3.9.3" ]'
 type: string
 
   matrix-exclude:
@@ -84,7 +84,7 @@ on:
   ff-maven:
 description: The Maven version used during fail-fast-build job
 required: false
-default: '3.9.2'
+default: '3.9.3'
 type: string
 
   ff-jdk:



[maven-gh-actions-shared] 01/01: Update maven-verify.yml

2022-07-07 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch v2-clean-local-repo-to-ensure-not-locking-files
in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git

commit a6301f9c0414f7d9398d29157f0889cbe0107c69
Author: Olivier Lamy 
AuthorDate: Thu Jul 7 17:49:34 2022 +1000

Update maven-verify.yml
---
 .github/workflows/maven-verify.yml | 20 
 1 file changed, 20 insertions(+)

diff --git a/.github/workflows/maven-verify.yml 
b/.github/workflows/maven-verify.yml
index 48eaeed..5faf538 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -209,6 +209,16 @@ jobs:
 
   - name: Clean Ensuring no file handle remains open on windows
 run: ./mvnw clean --errors --batch-mode --show-version
+
+  - name: list local repo
+if: always()
+run: ls -lrt ~/.m2/repository/
+shell: bash
+
+  - name: clean local repo
+if: always()
+run: rm ~/.m2/repository/
+shell: bash
 
   verify:
 needs: fail-fast-build
@@ -291,3 +301,13 @@ jobs:
   - name: Clean Ensuring no file handle remains open on windows
 if: steps.should-run.conclusion == 'success'
 run: ./mvnw clean --errors --batch-mode --show-version
+
+  - name: list local repo
+if: always()
+run: ls -lrt ~/.m2/repository/
+shell: bash
+
+  - name: clean local repo
+if: always()
+run: rm ~/.m2/repository/
+shell: bash