Skip to content

Commit 5ac4824

Browse files
committed
upgrade spring
1 parent 6352ba3 commit 5ac4824

File tree

3 files changed

+177
-7
lines changed

3 files changed

+177
-7
lines changed

.github/workflows/test.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,6 @@ jobs:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4343
run: ./gradlew test
4444

45-
- name: Generate lockfile for Trivy
46-
env:
47-
GITHUB_ACTOR: ${{ github.actor }}
48-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49-
run: ./gradlew dependencies --write-locks
50-
5145
- name: Run Trivy vulnerability scanner (Repo scan)
5246
uses: aquasecurity/trivy-action@master
5347
with:

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
22

33
plugins {
44
id("maven-publish")
5-
id("org.springframework.boot") version "3.2.4"
5+
id("org.springframework.boot") version "3.5.10"
66
id("io.spring.dependency-management") version "1.1.3"
77
kotlin("jvm") version "1.8.22"
88
kotlin("plugin.spring") version "1.8.22"
@@ -87,6 +87,7 @@ openApiGenerate {
8787
"interfaceOnly" to true,
8888
"documentationProvider" to "none",
8989
"useSpringBoot3" to true,
90+
"supportingFiles" to "false"
9091
)
9192
inputSpec.set("$rootDir/openapi/api.yaml")
9293
outputDir.set("$buildDir/generated")

0 commit comments

Comments
 (0)