Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/spring-boot-3-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
springboot-version: [ '3.0.0', '3.2.10', '3.3.5', '3.4.5', '3.5.6' ]
springboot-version: [ '3.0.0', '3.2.12', '3.3.13', '3.4.13', '3.5.13' ]
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Non-existent Spring Boot 3.5.13 version in CI matrix

High Severity

The CI matrix references Spring Boot 3.5.13, but this version has not been released yet. The latest available 3.5.x release is 3.5.12 (released March 19, 2026). The workflow substitutes this version into gradle/libs.versions.toml via sed, so Gradle will fail to resolve the dependency from Maven Central, causing the CI build to fail for this matrix entry.

Fix in Cursorย Fix in Web


name: Spring Boot ${{ matrix.springboot-version }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spring-boot-4-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
springboot-version: [ '4.0.0' ]
springboot-version: [ '4.0.0', '4.0.5' ]
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Non-existent Spring Boot 4.0.5 version in CI matrix

High Severity

The CI matrix references Spring Boot 4.0.5, but this version has not been released yet. The latest available 4.0.x release is 4.0.4 (released March 19, 2026). The workflow substitutes this version into gradle/libs.versions.toml via sed, so Gradle will fail to resolve the dependency from Maven Central, causing the CI build to fail for this matrix entry.

Fix in Cursorย Fix in Web


name: Spring Boot ${{ matrix.springboot-version }}
env:
Expand Down
Loading