We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8a7225 commit 45852bdCopy full SHA for 45852bd
1 file changed
.github/workflows/jdk-ea.yml
@@ -20,20 +20,22 @@ jobs:
20
os: [ubuntu-latest]
21
22
steps:
23
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
24
- name: Set up Java
25
uses: oracle-actions/setup-java@v1
26
with:
27
website: jdk.java.net
28
release: ${{ matrix.java_version }}
29
- name: Maven cache
30
- uses: actions/cache@v2
+ uses: actions/cache@v4
31
env:
32
cache-name: maven-cache
33
34
path:
35
~/.m2
36
key: build-${{ env.cache-name }}
37
+ - name: Maven version
38
+ run: mvn --version
39
- name: Build with Maven
40
run: mvn clean test -Pdefault
41
0 commit comments