diff --git a/listener/go.mod b/listener/go.mod index 901d72bd..7ecf4cdc 100644 --- a/listener/go.mod +++ b/listener/go.mod @@ -1,6 +1,6 @@ module github.com/kyma-project/runtime-watcher/listener -go 1.25.1 +go 1.25.3 require ( github.com/go-logr/logr v1.4.3 diff --git a/runtime-watcher/Dockerfile b/runtime-watcher/Dockerfile index 076d0321..89ead2f4 100644 --- a/runtime-watcher/Dockerfile +++ b/runtime-watcher/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$BUILDPLATFORM golang:1.25.2-alpine as builder +FROM --platform=$BUILDPLATFORM golang:1.25.3-alpine as builder WORKDIR /app diff --git a/runtime-watcher/go.mod b/runtime-watcher/go.mod index b4abba20..11ad5706 100644 --- a/runtime-watcher/go.mod +++ b/runtime-watcher/go.mod @@ -1,6 +1,6 @@ module github.com/kyma-project/runtime-watcher/skr -go 1.25.1 +go 1.25.3 require ( github.com/go-logr/logr v1.4.3 diff --git a/runtime-watcher/tests/e2e/watcher_metrics_test.go b/runtime-watcher/tests/e2e/watcher_metrics_test.go index dbb50a31..7ad09f33 100644 --- a/runtime-watcher/tests/e2e/watcher_metrics_test.go +++ b/runtime-watcher/tests/e2e/watcher_metrics_test.go @@ -56,7 +56,7 @@ var _ = Describe("Watcher Metrics", Ordered, func() { By("And FIPS-140 metric indicates \"mode == enabled\"", func() { Eventually(GetFips140Metric). WithContext(ctx). - Should(BeNumerically("==", watchermetrics.FipsModeOn)) + Should(BeNumerically("==", watchermetrics.FipsModeOnly)) }) }) diff --git a/runtime-watcher/tests/go.mod b/runtime-watcher/tests/go.mod index 61f81e0b..220a9b3f 100644 --- a/runtime-watcher/tests/go.mod +++ b/runtime-watcher/tests/go.mod @@ -1,6 +1,6 @@ module github.com/kyma-project/runtime-watcher/tests -go 1.25.1 +go 1.25.3 replace ( github.com/kyma-project/runtime-watcher/listener => ../../listener