Skip to content

Commit dfa5fa6

Browse files
fix(deps): update all dependencies
1 parent 20a1dd7 commit dfa5fa6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
matrix:
1616
java: [17]
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- name: Set up JDK
20-
uses: actions/setup-java@v4
20+
uses: actions/setup-java@v5
2121
with:
2222
check-latest: true
2323
distribution: temurin
2424
java-version: ${{ matrix.java }}
25-
- uses: actions/cache@v4
25+
- uses: actions/cache@v5
2626
env:
2727
cache-name: cache-maven-artifacts
2828
with:
@@ -35,8 +35,8 @@ jobs:
3535
runs-on: ubuntu-24.04
3636
needs: build
3737
steps:
38-
- uses: actions/checkout@v4
39-
- uses: actions/cache@v4
38+
- uses: actions/checkout@v6
39+
- uses: actions/cache@v5
4040
env:
4141
cache-name: cache-maven-artifacts
4242
with:
@@ -49,7 +49,7 @@ jobs:
4949
# Publish snapshot
5050
- name: Set up JDK 17 for publishing a snapshot
5151
if: github.event_name == 'push' && endswith(env.PROJECT_VERSION, 'SNAPSHOT')
52-
uses: actions/setup-java@v4
52+
uses: actions/setup-java@v5
5353
with:
5454
check-latest: true
5555
distribution: temurin
@@ -66,7 +66,7 @@ jobs:
6666
# Publish release
6767
- name: Set up JDK 17 for publishing a release
6868
if: github.event_name == 'release' && !endswith(env.PROJECT_VERSION, 'SNAPSHOT')
69-
uses: actions/setup-java@v4
69+
uses: actions/setup-java@v5
7070
with:
7171
gpg-passphrase: MAVEN_GPG_PASSPHRASE
7272
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6868

6969
<version.assertj-core>3.27.3</version.assertj-core>
70-
<version.junit-jupiter>5.12.1</version.junit-jupiter>
70+
<version.junit-jupiter>6.0.1</version.junit-jupiter>
7171
<!-- Plugin versions -->
7272
<version.mvn-compiler-plugin>3.14.0</version.mvn-compiler-plugin>
7373
<version.fmt-maven-plugin>2.25</version.fmt-maven-plugin>

spring-boot-pathfinder/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<name>Pathfinder: Spring Boot Bindings</name>
1313
<properties>
14-
<version.spring-boot>3.4.3</version.spring-boot>
14+
<version.spring-boot>4.0.1</version.spring-boot>
1515
<version.javax.annotation-api>1.3.2</version.javax.annotation-api>
1616
</properties>
1717

0 commit comments

Comments
 (0)