File tree Expand file tree Collapse file tree 3 files changed +8
-15
lines changed Expand file tree Collapse file tree 3 files changed +8
-15
lines changed Original file line number Diff line number Diff line change @@ -10,28 +10,28 @@ jobs:
10
10
publish :
11
11
runs-on : ubuntu-22.04
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v4
14
14
- name : Set up JDK 17
15
- uses : actions/setup-java@v2
15
+ uses : actions/setup-java@v4
16
16
with :
17
17
distribution : ' temurin'
18
18
java-version : ' 17'
19
19
- name : Cache Maven artifacts
20
- uses : actions/cache@v2
20
+ uses : actions/cache@v4
21
21
with :
22
22
path : ~/.m2/repository
23
23
key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
24
24
restore-keys : |
25
25
${{ runner.os }}-maven-
26
26
- name : Cache node
27
- uses : actions/cache@v2
27
+ uses : actions/cache@v4
28
28
with :
29
29
path : web-bundle/node
30
30
key : ${{ runner.os }}-node-${{ hashFiles('**/pom.xml') }}
31
31
restore-keys : |
32
32
${{ runner.os}}-node-
33
33
- name : Cache node_modules
34
- uses : actions/cache@v2
34
+ uses : actions/cache@v4
35
35
with :
36
36
path : web-bundle/node_modules
37
37
key : ${{ runner.os }}-node-${{ hashFiles('**/pom.xml', '**/package.json') }}
Original file line number Diff line number Diff line change @@ -18,16 +18,16 @@ jobs:
18
18
name : Run unit and integration tests
19
19
runs-on : ubuntu-latest
20
20
steps :
21
- - uses : actions/checkout@v2
21
+ - uses : actions/checkout@v4
22
22
with :
23
23
fetch-depth : 0
24
24
- name : Set up JDK 17
25
- uses : actions/setup-java@v2
25
+ uses : actions/setup-java@v4
26
26
with :
27
27
distribution : ' temurin'
28
28
java-version : ' 17'
29
29
- name : Cache Maven packages
30
- uses : actions/cache@v2
30
+ uses : actions/cache@v4
31
31
with :
32
32
path : ~/.m2
33
33
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change 52
52
<artifactId >logback-classic</artifactId >
53
53
<scope >test</scope >
54
54
</dependency >
55
- <dependency >
56
- <groupId >com.github.GIScience.graphhopper</groupId >
57
- <artifactId >graphhopper-core</artifactId >
58
- <version >4.9-SNAPSHOT</version >
59
- <type >test-jar</type >
60
- <scope >test</scope >
61
- </dependency >
62
55
<dependency >
63
56
<groupId >org.hamcrest</groupId >
64
57
<artifactId >hamcrest-library</artifactId >
You can’t perform that action at this time.
0 commit comments