From a420d9645df2606fd379655550ccf8598ff3184e Mon Sep 17 00:00:00 2001 From: Igor Bezukh Date: Wed, 18 Feb 2026 13:45:02 +0200 Subject: [PATCH] build: bump Go version 1.24 Signed-off-by: Igor Bezukh --- Containerfile.wasp | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfile.wasp b/Containerfile.wasp index 555633c6..d76cfde0 100644 --- a/Containerfile.wasp +++ b/Containerfile.wasp @@ -1,5 +1,5 @@ # Builder stage -FROM fedora:38 as builder +FROM fedora:42 as builder # Install necessary tools for building RUN dnf update -y && dnf install -y \ @@ -36,4 +36,4 @@ RUN useradd -u 1001 -r -s /sbin/nologin -d /app/wasp wasp USER 1001 # Set the entrypoint to the binary -ENTRYPOINT ["/app/wasp"] \ No newline at end of file +ENTRYPOINT ["/app/wasp"] diff --git a/go.mod b/go.mod index 812154f9..2664c5ee 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/openshift-virtualization/wasp-agent -go 1.21 +go 1.24 require ( k8s.io/apimachinery v0.28.12