This is an automated email from the ASF dual-hosted git repository. pcristof pushed a commit to branch OPENJPA-2940 in repository https://gitbox.apache.org/repos/asf/openjpa.git
commit 2850cfda66f05f647c7631e6ec45d7493f193317 Author: Paulo Cristovão de Araújo Silva Filho <pcris...@gmail.com> AuthorDate: Fri Jul 4 11:30:48 2025 -0300 [OPENJPA-2940][WIP] Trying to fix GH actions --- .github/workflows/ci.yml | 4 ++-- .github/workflows/pr-validation.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90126d8cd..ecb27c245 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - name: Setup Java JDK uses: actions/setup-java@v4 with: - distribution: 'zulu' + distribution: 'temurin' java-version: 17 - name: 'Cache Maven packages' uses: actions/cache@v4 @@ -34,6 +34,6 @@ jobs: key: 'cache' restore-keys: 'cache' - name: 'Build with Maven' - run: mvn -B -Ptest-h2-2 clean install --file pom.xml + run: mvn -Ptest-h2-2 -B clean install --file pom.xml - name: 'Remove Snapshots Before Caching' run: find ~/.m2 -name '*SNAPSHOT' | xargs rm -Rf diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index ed78eae3e..4bcaf6066 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -25,7 +25,7 @@ jobs: - name: Setup Java JDK uses: actions/setup-java@v4 with: - distribution: 'zulu' + distribution: 'temurin' java-version: 17 - name: 'Cache Maven packages' uses: actions/cache@v4 @@ -34,6 +34,6 @@ jobs: key: 'cache' restore-keys: 'cache' - name: 'Build with Maven' - run: mvn -B -Ptest-h2-2 clean install --file pom.xml + run: mvn -Ptest-h2-2 -B clean install --file pom.xml - name: 'Remove Snapshots Before Caching' run: find ~/.m2 -name '*SNAPSHOT' | xargs rm -Rf