We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25689fc commit 30d2af0Copy full SHA for 30d2af0
1 file changed
.github/workflows/build.yml
@@ -10,13 +10,14 @@ jobs:
10
java: [11, 17]
11
name: "Java ${{ matrix.java }} build"
12
steps:
13
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
14
- name: Set up JDK
15
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v3
16
with:
17
java-version: ${{ matrix.java }}
18
+ distribution: 'temurin'
19
- name: Cache Maven packages
- uses: actions/cache@v2
20
+ uses: actions/cache@v3
21
22
path: ~/.m2
23
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
0 commit comments