Skip to content

Commit 86e74ad

Browse files
committed
Update Go to 1.24.7
1 parent fc6d31e commit 86e74ad

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ sed -i 's/FROM golang:1.23.7-bullseye/FROM golang:1.23.10-bullseye/' Dockerfile
143143
go mod tidy
144144
make build
145145
make unittests
146+
make lint
146147
```
147148

148149

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#####################################
2-
FROM golang:1.23.10-bullseye AS lotus-builder
2+
FROM golang:1.24.7-bullseye AS lotus-builder
33
MAINTAINER Lotus Development Team
44

55
RUN apt-get update && apt-get install -y ca-certificates build-essential clang ocl-icd-opencl-dev ocl-icd-libopencl1 jq libhwloc-dev

GO_VERSION_MIN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.23.10
1+
1.24.7

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<a href="https://github.com/filecoin-project/lotus/actions/workflows/check.yml"><img src="https://github.com/filecoin-project/lotus/actions/workflows/check.yml/badge.svg"></a>
1212
<a href="https://github.com/filecoin-project/lotus/actions/workflows/test.yml"><img src="https://github.com/filecoin-project/lotus/actions/workflows/test.yml/badge.svg"></a>
1313
<a href="https://goreportcard.com/report/github.com/filecoin-project/lotus"><img src="https://goreportcard.com/badge/github.com/filecoin-project/lotus" /></a>
14-
<a href=""><img src="https://img.shields.io/badge/golang-%3E%3D1.23.10-blue.svg" /></a>
14+
<a href=""><img src="https://img.shields.io/badge/golang-%3E%3D1.24.7-blue.svg" /></a>
1515
<br>
1616
</p>
1717

@@ -58,10 +58,10 @@ For other distributions you can find the required dependencies [here.](https://l
5858

5959
#### Go
6060

61-
To build Lotus, you need a working installation of [Go 1.23.10 or higher](https://golang.org/dl/):
61+
To build Lotus, you need a working installation of [Go 1.24.7 or higher](https://golang.org/dl/):
6262

6363
```bash
64-
wget -c https://golang.org/dl/go1.23.10.linux-amd64.tar.gz -O - | sudo tar -xz -C /usr/local
64+
wget -c https://golang.org/dl/go1.24.7.linux-amd64.tar.gz -O - | sudo tar -xz -C /usr/local
6565
```
6666

6767
**TIP:**

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/filecoin-project/lotus
22

3-
go 1.23.10
3+
go 1.24.7
44

55
retract v1.14.0 // Accidentally force-pushed tag, use v1.14.1+ instead.
66

0 commit comments

Comments
 (0)