Skip to content
Merged
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 grpc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ java {
}
}

var grpcVersion = "1.82.1"
var grpcVersion = "1.82.2"
var protobufVersion = "4.35.1"
var protocVersion = protobufVersion

Expand Down
4 changes: 2 additions & 2 deletions log-appender/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ java {
dependencies {
// Slf4J / logback
implementation("org.slf4j:slf4j-api:2.0.18")
implementation("ch.qos.logback:logback-core:1.5.37")
implementation("ch.qos.logback:logback-classic:1.5.37")
implementation("ch.qos.logback:logback-core:1.5.38")
implementation("ch.qos.logback:logback-classic:1.5.38")

// JUL to SLF4J bridge
implementation("org.slf4j:jul-to-slf4j:2.0.18")
Expand Down
4 changes: 2 additions & 2 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ k3d = "5.8.3"
kubectl = "1.36.2"

# Linters
"aqua:grafana/flint" = "0.22.6"
"aqua:grafana/flint" = "0.22.8"
lychee = "0.24.2"
rumdl = "0.2.28"
rumdl = "0.2.32"

[env]
FLINT_CONFIG_DIR = ".github/config"
Expand Down
2 changes: 1 addition & 1 deletion otlp/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:

prometheus:
container_name: prometheus
image: prom/prometheus:v3.13.0@sha256:c6b27ea434f8389bfe233fbc7be381cf50587c286e871bc842008f5a1b1908a7
image: prom/prometheus:v3.13.1@sha256:3c42b892cf723fa54d2f262c37a0e1f80aa8c8ddb1da7b9b0df9455a35a7f893
volumes:
- ./prometheus.yaml:/etc/prometheus/prometheus.yml
ports:
Expand Down
2 changes: 1 addition & 1 deletion prometheus/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
ports:
- '19090:19090'
prometheus:
image: prom/prometheus@sha256:c6b27ea434f8389bfe233fbc7be381cf50587c286e871bc842008f5a1b1908a7
image: prom/prometheus@sha256:3c42b892cf723fa54d2f262c37a0e1f80aa8c8ddb1da7b9b0df9455a35a7f893
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion spring-native/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.springframework.boot.gradle.plugin.SpringBootPlugin
plugins {
id("java")
id("org.springframework.boot") version "3.5.16"
id("org.graalvm.buildtools.native") version "1.1.3"
id("org.graalvm.buildtools.native") version "1.1.4"
}

description = "OpenTelemetry Example for Spring native images"
Expand Down
2 changes: 1 addition & 1 deletion telemetry-testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.boot:spring-boot-resttestclient")

testImplementation(enforcedPlatform("org.junit:junit-bom:6.1.1"))
testImplementation(enforcedPlatform("org.junit:junit-bom:6.1.2"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.mock-server:mockserver-netty:7.4.0")
Expand Down
Loading