Skip to content

Commit c0e57cc

Browse files
authored
Merge pull request #7 from aureamunoz/to-spring-boot-3
Upgrade to latest Spring
2 parents cc2fc61 + 94113b8 commit c0e57cc

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/mvn-build.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
name: "CI - JDK 11 Build"
1+
name: "CI - JDK 17 Build"
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88

99

1010
jobs:
11-
build-jdk11:
12-
name: "JDK 11 Build"
11+
build-jdk17:
12+
name: "JDK 17 Build"
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v2
17-
- name: Set up JDK 11
18-
uses: actions/setup-java@v2
16+
- uses: actions/checkout@v4
17+
- name: Set up JDK 17
18+
uses: actions/setup-java@v4
1919
with:
2020
distribution: temurin
21-
java-version: 11
21+
java-version: 17
2222
- name: Build
2323
run: mvn clean install
2424

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
4242
<maven.compiler.source>1.8</maven.compiler.source>
4343
<maven.compiler.target>1.8</maven.compiler.target>
44-
<spring-boot.version>2.1.13.RELEASE</spring-boot.version>
44+
<spring-boot.version>3.2.5</spring-boot.version>
4545
</properties>
4646

4747
<packaging>pom</packaging>

0 commit comments

Comments
 (0)