Skip to content

Commit

Permalink
Align dependencies to Spring Boot 3.2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
mvitz committed Jul 15, 2024
1 parent 491c450 commit 3e96f1f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ updates:
schedule:
interval: "weekly"
ignore:
# Ignore all logback updates because it is aligned to Spring Boot 2.7.x
# Ignore all logback updates because it is aligned to Spring Boot 3.2.x
- dependency-name: "ch.qos.logback:logback-classic"
# Ignore all AssertJ updates because it is aligned to Spring Boot 2.7.x
# Ignore all AssertJ updates because it is aligned to Spring Boot 3.2.x
- dependency-name: "org.assertj:assertj-core"
# Ignore all JUnit updates because it is aligned to Spring Boot 2.7.x
# Ignore all JUnit updates because it is aligned to Spring Boot 3.2.x
- dependency-name: "org.junit:junit-bom"
- package-ecosystem: "github-actions"
directory: "/"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up JDK 8
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'
cache: maven

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</distributionManagement>

<properties>
<java.version>1.8</java.version>
<java.version>11</java.version>
<maven.compiler.showDeprecation>true</maven.compiler.showDeprecation>
<maven.compiler.showWarnings>true</maven.compiler.showWarnings>
<maven.compiler.source>${java.version}</maven.compiler.source>
Expand All @@ -80,7 +80,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.8.2</version>
<version>5.10.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -96,7 +96,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.11</version>
<version>1.4.14</version>
<scope>provided</scope>
</dependency>

Expand All @@ -108,7 +108,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.22.0</version>
<version>3.24.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 3e96f1f

Please sign in to comment.