Skip to content

Commit 4d9611a

Browse files
committed
build: upgrade to jdk 25
1 parent da1082b commit 4d9611a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci-for-example.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
19-
- name: Set up JDK 21
20-
uses: actions/setup-java@v4
18+
uses: actions/checkout@v6
19+
- name: Set up JDK 25
20+
uses: actions/setup-java@v5
2121
with:
2222
distribution: temurin
23-
java-version: 21
23+
java-version: 25
2424
- name: Cache Maven dependencies
2525
uses: actions/cache@v4
2626
with:

.github/workflows/ci-from-template.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout PR branch
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
with:
1616
# checkout the pull request head ref when available, otherwise fallback to the workflow ref
1717
ref: ${{ github.head_ref || github.ref }}
@@ -46,11 +46,11 @@ jobs:
4646
run: |
4747
echo "Working dir: $(pwd)"
4848
ls -la ./cart-service
49-
- name: Set up JDK 21
50-
uses: actions/setup-java@v4
49+
- name: Set up JDK 25
50+
uses: actions/setup-java@v5
5151
with:
5252
distribution: temurin
53-
java-version: 21
53+
java-version: 25
5454
- name: Cache Maven dependencies
5555
uses: actions/cache@v4
5656
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is a template project for hexagonal-spring-boot-java. This project is gener
55
## Pre-requisites
66

77
- [copier](https://copier.readthedocs.io/en/stable/#installation)
8-
- Jdk 21
8+
- Jdk 25
99
- Maven >3.9.5
1010

1111
## How to contribute ?

example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<version>1.0-SNAPSHOT</version>
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<java.version>21</java.version>
12+
<java.version>25</java.version>
1313
<maven.compiler.source>${java.version}</maven.compiler.source>
1414
<maven.compiler.target>${java.version}</maven.compiler.target>
1515
<junit-jupiter.version>6.0.1</junit-jupiter.version>

0 commit comments

Comments
 (0)