We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e0997 commit 3785a85Copy full SHA for 3785a85
.github/workflows/test.yml
@@ -11,18 +11,19 @@ jobs:
11
runs-on: ubuntu-latest
12
strategy:
13
matrix:
14
- java-version: [11, 13]
+ java-version: [11, 13, 17]
15
steps:
16
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
17
- name: validate gradle wrapper
18
uses: gradle/wrapper-validation-action@v1
19
- name: Set up JDK ${{ matrix.java-version }}
20
uses: actions/setup-java@v1
21
with:
22
java-version: ${{ matrix.java-version }}
23
+ distribution: 'microsoft'
24
25
- name: Cache Gradle packages
- uses: actions/cache@v2
26
+ uses: actions/cache@v4
27
28
path: ~/.gradle/caches
29
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
0 commit comments