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 19767aa commit 280cd0fCopy full SHA for 280cd0f
.github/workflows/build.yaml
@@ -15,18 +15,13 @@ jobs:
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
19
- name: Set up JDK 11
20
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v4
21
with:
22
java-version: 11
23
-
24
- - name: Cache Maven packages
25
- uses: actions/cache@v2
26
- with:
27
- path: ~/.m2
28
- key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
29
- restore-keys: ${{ runner.os }}-m2
+ distribution: 'temurin'
+ cache: 'maven'
30
31
- name: Attach artifact
32
id: build-artifact
0 commit comments