This is an automated email from the ASF dual-hosted git repository.
ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git
The following commit(s) were added to refs/heads/master by this push:
new a84728ccb Upgrade GH workflows with JDK 11
a84728ccb is described below
commit a84728ccb17aa86f7b77f00b1316df1a0ef1ee0a
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Sun May 7 08:13:32 2023 +0200
Upgrade GH workflows with JDK 11
---
.github/workflows/pr-validation.yml | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/pr-validation.yml
b/.github/workflows/pr-validation.yml
index 1593a46e1..77a0fd3d9 100644
--- a/.github/workflows/pr-validation.yml
+++ b/.github/workflows/pr-validation.yml
@@ -21,13 +21,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v2
- - name: 'Set up JDK 1.8'
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v3
+ - name: Setup Java JDK
+ uses: actions/setup-java@v3
with:
- java-version: '1.8'
+ distribution: 'zulu'
+ java-version: 11
- name: 'Cache Maven packages'
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ~/.m2
key: 'cache'