Skip to content

Commit b376a12

Browse files
authored
Merge branch 'main' into logback-appender-test-cleanup
2 parents d307b7b + 53155ef commit b376a12

62 files changed

Lines changed: 299 additions & 221 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/update-latest-dep-versions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
java-version-file: .java-version
2828

2929
- name: Setup Gradle
30-
uses: gradle/actions/setup-gradle@f29f5a9d7b09a7c6b29859002d29d24e1674c884 # v5.0.1
30+
uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0
3131

3232
- name: Resolve latest dep versions
3333
run: >
@@ -48,7 +48,7 @@ jobs:
4848
if: steps.check-changes.outputs.changed == 'true'
4949
run: .github/scripts/use-cla-approved-bot.sh
5050

51-
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
51+
- uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
5252
if: steps.check-changes.outputs.changed == 'true'
5353
id: otelbot-token
5454
with:

benchmark-overhead-jmh/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ otelJava {
1212
}
1313

1414
dependencies {
15-
jmhImplementation("org.springframework.boot:spring-boot-starter-web:4.0.5")
15+
jmhImplementation("org.springframework.boot:spring-boot-starter-web:4.0.6")
1616
}
1717

1818
tasks {

benchmark-overhead/Dockerfile.petclinic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN git checkout 8aa4d49
1313
RUN ./mvnw package -Dmaven.test.skip=true
1414
RUN cp target/spring-petclinic-rest*.jar /app/spring-petclinic-rest.jar
1515

16-
FROM bellsoft/liberica-openjdk-alpine:25.0.2@sha256:31929ba9551e22cf598d6b65129c50eb0236f9dc3bde2b4270cb93bea4d7c85a
16+
FROM bellsoft/liberica-openjdk-alpine:25.0.3@sha256:e8ac7321502a0dbabc502ba53d5c1a179ec5a21096cc4b9e52f4dad7b73844ee
1717
COPY --from=app-build /app/spring-petclinic-rest.jar /app/spring-petclinic-rest.jar
1818
WORKDIR /app
1919
EXPOSE 9966

benchmark-overhead/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repositories {
1616
}
1717

1818
dependencies {
19-
implementation(enforcedPlatform("org.junit:junit-bom:5.14.3"))
19+
implementation(enforcedPlatform("org.junit:junit-bom:5.14.4"))
2020

2121
testImplementation(platform("org.testcontainers:testcontainers-bom:2.0.5"))
2222
testImplementation("org.testcontainers:testcontainers:2.0.5")

conventions/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ dependencies {
7878
implementation("net.ltgt.gradle:gradle-nullaway-plugin:3.0.0")
7979
implementation("me.champeau.gradle:japicmp-gradle-plugin:0.4.6")
8080

81-
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.3"))
81+
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.4"))
8282
testImplementation("org.junit.jupiter:junit-jupiter-api")
8383
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
8484
testImplementation("org.assertj:assertj-core:3.27.7")

conventions/src/main/kotlin/otel.java-conventions.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ afterEvaluate {
419419
checkstyle {
420420
configFile = rootProject.file("buildscripts/checkstyle.xml")
421421
// this version should match the version of google_checks.xml used as basis for above configuration
422-
toolVersion = "13.4.0"
422+
toolVersion = "13.4.1"
423423
maxWarnings = 0
424424
}
425425

dependencyManagement/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ val CORE_DEPENDENCIES = listOf(
8080
// There are dependencies included here that appear to have no usages, but are maintained at
8181
// this top level to help consistently satisfy large numbers of transitive dependencies.
8282
val DEPENDENCIES = listOf(
83-
"org.junit.jupiter:junit-jupiter-api:5.14.3",
83+
"org.junit.jupiter:junit-jupiter-api:5.14.4",
8484

8585
"io.r2dbc:r2dbc-proxy:1.1.6.RELEASE",
8686
"ch.qos.logback:logback-classic:1.3.16", // 1.4+ requires Java 11+
8787
"uk.org.webcompere:system-stubs-jupiter:2.0.3",
88-
"com.uber.nullaway:nullaway:0.13.3",
88+
"com.uber.nullaway:nullaway:0.13.4",
8989
"commons-beanutils:commons-beanutils:1.11.0",
9090
"commons-cli:commons-cli:1.11.0",
9191
"commons-codec:commons-codec:1.22.0",

examples/distro/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ subprojects {
6969

7070
testImplementation("org.mockito:mockito-core:5.23.0")
7171

72-
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.3"))
72+
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.4"))
7373
testImplementation("org.junit.jupiter:junit-jupiter-api")
7474
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
7575
testRuntimeOnly("org.junit.platform:junit-platform-launcher")

examples/extension/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ dependencies {
108108
testImplementation("io.opentelemetry.proto:opentelemetry-proto:1.10.0-alpha")
109109
testImplementation("org.assertj:assertj-core:3.27.7")
110110

111-
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.3"))
111+
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.4"))
112112
testImplementation("org.junit.jupiter:junit-jupiter-api")
113113
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
114114
testRuntimeOnly("org.junit.platform:junit-platform-launcher")

gradle-plugins/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dependencies {
4949

5050
testImplementation("org.assertj:assertj-core:3.27.7")
5151

52-
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.3"))
52+
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.4"))
5353
testImplementation("org.junit.jupiter:junit-jupiter-api")
5454
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
5555
testRuntimeOnly("org.junit.platform:junit-platform-launcher")

0 commit comments

Comments
 (0)