From 03fcfc4b7385b545a89a3fc62bef4e1ec7532e0d Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 14 Jul 2025 12:10:30 +0200 Subject: syz-cluster: update Go version in Dockerfiles For some reason, it does not download the newer toolchain versions automatically. --- syz-cluster/workflow/boot-step/Dockerfile | 2 +- syz-cluster/workflow/triage-step/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'syz-cluster/workflow') diff --git a/syz-cluster/workflow/boot-step/Dockerfile b/syz-cluster/workflow/boot-step/Dockerfile index 70a558f75..5bb1245b7 100644 --- a/syz-cluster/workflow/boot-step/Dockerfile +++ b/syz-cluster/workflow/boot-step/Dockerfile @@ -11,7 +11,7 @@ RUN go mod download COPY --exclude=syz-cluster . . RUN make TARGETARCH=amd64 -FROM golang:1.23-alpine AS boot-step-builder +FROM golang:1.24-alpine AS boot-step-builder WORKDIR /build # Copy the code and the dependencies. diff --git a/syz-cluster/workflow/triage-step/Dockerfile b/syz-cluster/workflow/triage-step/Dockerfile index 65d68f2dc..d5c4bf254 100644 --- a/syz-cluster/workflow/triage-step/Dockerfile +++ b/syz-cluster/workflow/triage-step/Dockerfile @@ -1,7 +1,7 @@ # Copyright 2024 syzkaller project authors. All rights reserved. # Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. -FROM golang:1.23-alpine AS triage-step-builder +FROM golang:1.24-alpine AS triage-step-builder WORKDIR /build -- cgit mrf-deployment