File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -46,3 +46,7 @@ updates:
46
46
- dependency-name : acorn
47
47
versions :
48
48
- 8.0.5
49
+ - package-ecosystem : " github-actions"
50
+ directory : " /"
51
+ schedule :
52
+ interval : " weekly"
Original file line number Diff line number Diff line change @@ -10,17 +10,13 @@ jobs:
10
10
os : [ubuntu-latest]
11
11
runs-on : ${{ matrix.os }}
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v4
14
14
- name : Set up JDK ${{ matrix.jdk }}
15
- uses : actions/setup-java@v1
15
+ uses : actions/setup-java@v4
16
16
with :
17
+ distribution : temurin
18
+ cache : maven
17
19
java-version : ${{ matrix.jdk }}
18
- - name : Cache Maven packages
19
- uses : actions/cache@v2
20
- with :
21
- path : ~/.m2
22
- key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
23
- restore-keys : ${{ runner.os }}-m2
24
20
- name : Maven Build
25
21
run : mvn clean package -DskipTests
26
22
- name : Test
You can’t perform that action at this time.
0 commit comments