Skip to content

Commit 4706d6b

Browse files
committed
try JDK 24
1 parent 70fb1ec commit 4706d6b

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,29 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
java-version: [ 23, 24-ea ]
9+
java-version: [ 24, 25-ea ]
1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-java@v3
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-java@v4
1313
with:
1414
java-version: ${{ matrix.java-version }}
1515
distribution: temurin
1616
- name: Cache Maven artifacts
17-
uses: actions/cache@v3
17+
uses: actions/cache@v4
1818
with:
1919
path: ~/.m2/repository
2020
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
2121
restore-keys: |
2222
${{ runner.os }}-maven-
2323
- name: Cache node
24-
uses: actions/cache@v3
24+
uses: actions/cache@v4
2525
with:
2626
path: web-bundle/node
2727
key: ${{ runner.os }}-node-${{ hashFiles('**/pom.xml') }}
2828
restore-keys: |
2929
${{ runner.os}}-node-
3030
- name: Cache node_modules
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: web-bundle/node_modules
3434
key: ${{ runner.os }}-node-${{ hashFiles('**/pom.xml', '**/package.json') }}

.github/workflows/publish-github-packages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@ jobs:
1414
contents: read
1515
packages: write
1616
steps:
17-
- uses: actions/checkout@v3
18-
- uses: actions/setup-java@v3
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-java@v4
1919
with:
2020
java-version: 17
2121
distribution: temurin
2222
- name: Cache Maven artifacts
23-
uses: actions/cache@v3
23+
uses: actions/cache@v4
2424
with:
2525
path: ~/.m2/repository
2626
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
2727
restore-keys: |
2828
${{ runner.os }}-maven-
2929
- name: Cache node
30-
uses: actions/cache@v3
30+
uses: actions/cache@v4
3131
with:
3232
path: web-bundle/node
3333
key: ${{ runner.os }}-node-${{ hashFiles('**/pom.xml') }}
3434
restore-keys: |
3535
${{ runner.os}}-node-
3636
- name: Cache node_modules
37-
uses: actions/cache@v3
37+
uses: actions/cache@v4
3838
with:
3939
path: web-bundle/node_modules
4040
key: ${{ runner.os }}-node-${{ hashFiles('**/pom.xml', '**/package.json') }}

.github/workflows/publish-maven-central.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
if: github.repository_owner == 'graphhopper'
1111
runs-on: ubuntu-22.04
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-java@v3
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-java@v4
1515
with:
1616
java-version: 17
1717
distribution: temurin
@@ -23,21 +23,21 @@ jobs:
2323
gpg-passphrase: GPG_PASSPHRASE
2424

2525
- name: Cache Maven artifacts
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: ~/.m2/repository
2929
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
3030
restore-keys: |
3131
${{ runner.os }}-maven-
3232
- name: Cache node
33-
uses: actions/cache@v3
33+
uses: actions/cache@v4
3434
with:
3535
path: web-bundle/node
3636
key: ${{ runner.os }}-node-${{ hashFiles('**/pom.xml') }}
3737
restore-keys: |
3838
${{ runner.os}}-node-
3939
- name: Cache node_modules
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: web-bundle/node_modules
4343
key: ${{ runner.os }}-node-${{ hashFiles('**/pom.xml', '**/package.json') }}

0 commit comments

Comments
 (0)