From 12b46c0fcf62b7d7bba01ab67e5fcd0b6b555930 Mon Sep 17 00:00:00 2001 From: web3-bot <81333946+web3-bot@users.noreply.github.com> Date: Wed, 20 Aug 2025 16:22:15 +0000 Subject: [PATCH 1/2] chore!: bump go.mod to Go 1.24 and run go fix BREAKING CHANGE: Updating the Go version to 1.24 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index c1cb244d..f6eef45c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/filecoin-project/lassie -go 1.23.0 +go 1.24 require ( github.com/dustin/go-humanize v1.0.1 From e7fddcf20f22799eabd2b6fda3cf1809c8b7efa2 Mon Sep 17 00:00:00 2001 From: Piotr Galar Date: Wed, 20 Aug 2025 18:51:31 +0200 Subject: [PATCH 2/2] chore: update Go in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 14397ace..481a1f69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23-bullseye as build +FROM golang:1.24-bullseye as build WORKDIR /go/src/lassie