Skip to content

Commit e44e639

Browse files
committed
Support jdk25 for ci
Signed-off-by: JermaineHua <[email protected]>
1 parent f4326d7 commit e44e639

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/maven.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
runs-on: ubuntu-22.04
1717
strategy:
1818
matrix:
19-
jdk: [17, 21]
19+
jdk: [17, 21, 25]
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Set up JDK
23-
uses: actions/setup-java@v4
23+
uses: actions/setup-java@v5
2424
with:
25-
distribution: 'temurin'
25+
distribution: 'corretto'
2626
java-version: ${{ matrix.jdk }}
2727
- name: Install Zookeeper
2828
run: echo "Install Zookeeper 3.5.6"

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>org.springframework.boot</groupId>
2626
<artifactId>spring-boot-starter-parent</artifactId>
27-
<version>3.5.3</version>
27+
<version>3.5.6</version>
2828
</parent>
2929

3030
<groupId>com.alipay.sofa</groupId>
@@ -37,7 +37,7 @@
3737
<properties>
3838
<revision>4.5.0</revision>
3939
<sofa.boot.version>${revision}</sofa.boot.version>
40-
<spring.boot.version>3.5.3</spring.boot.version>
40+
<spring.boot.version>3.5.6</spring.boot.version>
4141
<!--project-->
4242
<java.version>17</java.version>
4343
<project.encoding>UTF-8</project.encoding>

0 commit comments

Comments
 (0)