Skip to content

Commit 5fc2c8b

Browse files
authored
Merge pull request #101 from GIScience/fix/remove-outdated-dependency
fix: Remove the outdated test jar import
2 parents 0432543 + 3b3cfbf commit 5fc2c8b

File tree

3 files changed

+8
-15
lines changed

3 files changed

+8
-15
lines changed

.github/workflows/push-packages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@ jobs:
1010
publish:
1111
runs-on: ubuntu-22.04
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: Set up JDK 17
15-
uses: actions/setup-java@v2
15+
uses: actions/setup-java@v4
1616
with:
1717
distribution: 'temurin'
1818
java-version: '17'
1919
- name: Cache Maven artifacts
20-
uses: actions/cache@v2
20+
uses: actions/cache@v4
2121
with:
2222
path: ~/.m2/repository
2323
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
2424
restore-keys: |
2525
${{ runner.os }}-maven-
2626
- name: Cache node
27-
uses: actions/cache@v2
27+
uses: actions/cache@v4
2828
with:
2929
path: web-bundle/node
3030
key: ${{ runner.os }}-node-${{ hashFiles('**/pom.xml') }}
3131
restore-keys: |
3232
${{ runner.os}}-node-
3333
- name: Cache node_modules
34-
uses: actions/cache@v2
34+
uses: actions/cache@v4
3535
with:
3636
path: web-bundle/node_modules
3737
key: ${{ runner.os }}-node-${{ hashFiles('**/pom.xml', '**/package.json') }}

.github/workflows/run_maven_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ jobs:
1818
name: Run unit and integration tests
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
2424
- name: Set up JDK 17
25-
uses: actions/setup-java@v2
25+
uses: actions/setup-java@v4
2626
with:
2727
distribution: 'temurin'
2828
java-version: '17'
2929
- name: Cache Maven packages
30-
uses: actions/cache@v2
30+
uses: actions/cache@v4
3131
with:
3232
path: ~/.m2
3333
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

reader-gtfs/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,6 @@
5252
<artifactId>logback-classic</artifactId>
5353
<scope>test</scope>
5454
</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>
6255
<dependency>
6356
<groupId>org.hamcrest</groupId>
6457
<artifactId>hamcrest-library</artifactId>

0 commit comments

Comments
 (0)