Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 24, 2024
1 parent b91e14c commit 21a8263
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bellsoft/liberica-openjdk-alpine-musl:21.0.4 AS build
FROM bellsoft/liberica-openjdk-alpine-musl:21.0.5 AS build
WORKDIR /usr/src/app
# cache dependencies
COPY ./gradlew ./
Expand All @@ -20,7 +20,7 @@ COPY ./server ./server
ARG BUILD_ARG="bootJar --parallel"
RUN ./gradlew ${BUILD_ARG}

FROM bellsoft/liberica-openjre-alpine-musl:21.0.4 AS app
FROM bellsoft/liberica-openjre-alpine-musl:21.0.5 AS app
# use non-root user
RUN addgroup -S spring && adduser -S spring -G spring
USER spring:spring
Expand Down
10 changes: 5 additions & 5 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ dependencies {
implementation(libs.plugin.springBoot)
implementation(libs.plugin.springDependencyManagement)
implementation(libs.plugin.spotless)
implementation(kotlin("allopen", "2.0.20"))
implementation(kotlin("gradle-plugin", "2.0.20"))
implementation(kotlin("allopen", "2.0.21"))
implementation(kotlin("gradle-plugin", "2.0.21"))
// required for kotlin plugin jpa
implementation(kotlin("reflect", "2.0.20"))
implementation(kotlin("stdlib-jdk8", "2.0.20"))
implementation(kotlin("noarg", "2.0.20"))
implementation(kotlin("reflect", "2.0.21"))
implementation(kotlin("stdlib-jdk8", "2.0.21"))
implementation(kotlin("noarg", "2.0.21"))
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

dependencies {
testImplementation("io.mockk:mockk-jvm:1.13.12")
testImplementation("io.mockk:mockk-jvm:1.13.13")
testImplementation("com.ninja-squad:springmockk:4.0.2")
testImplementation("io.kotest:kotest-assertions-core-jvm:5.9.1")
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/testing-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
dependencies {
testImplementation("org.springframework.boot:spring-boot-starter-test")
// kotlin related dependencies should move to kotlin-testing-conventions
testImplementation("io.mockk:mockk-jvm:1.13.12")
testImplementation("io.mockk:mockk-jvm:1.13.13")
testImplementation("com.ninja-squad:springmockk:4.0.2")
testImplementation("io.kotest:kotest-assertions-core-jvm:5.9.1")
}
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ services:
volumes:
- "./stubs:/home/wiremock/mappings"
prometheus:
image: "prom/prometheus:v2.54.1"
image: "prom/prometheus:v2.55.0"
ports:
- "127.0.0.1:9090:9090"
volumes:
Expand All @@ -63,7 +63,7 @@ services:
timeout: 5s
retries: 3
grafana:
image: "grafana/grafana:11.2.2-ubuntu"
image: "grafana/grafana:11.3.0-ubuntu"
ports:
- "127.0.0.1:3000:3000"
volumes:
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
springdoc = "2.6.0"
springBoot = "3.3.4"
springBoot = "3.3.5"
springDependencyManagementPlugin = "1.1.6"
kotest = "5.9.1"
spotless = "6.25.0"
Expand Down

0 comments on commit 21a8263

Please sign in to comment.