File tree Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ sed -i 's/FROM golang:1.23.7-bullseye/FROM golang:1.23.10-bullseye/' Dockerfile
143
143
go mod tidy
144
144
make build
145
145
make unittests
146
+ make lint
146
147
```
147
148
148
149
Original file line number Diff line number Diff line change 1
1
# ####################################
2
- FROM golang:1.23.10 -bullseye AS lotus-builder
2
+ FROM golang:1.24.7 -bullseye AS lotus-builder
3
3
MAINTAINER Lotus Development Team
4
4
5
5
RUN apt-get update && apt-get install -y ca-certificates build-essential clang ocl-icd-opencl-dev ocl-icd-libopencl1 jq libhwloc-dev
Original file line number Diff line number Diff line change 1
- 1.23.10
1
+ 1.24.7
Original file line number Diff line number Diff line change 11
11
<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 >
12
12
<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 >
13
13
<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 >
15
15
<br >
16
16
</p >
17
17
@@ -58,10 +58,10 @@ For other distributions you can find the required dependencies [here.](https://l
58
58
59
59
#### Go
60
60
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/ ) :
62
62
63
63
``` 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
65
65
```
66
66
67
67
** TIP:**
Original file line number Diff line number Diff line change 1
1
module github.com/filecoin-project/lotus
2
2
3
- go 1.23.10
3
+ go 1.24.7
4
4
5
5
retract v1.14.0 // Accidentally force-pushed tag, use v1.14.1+ instead.
6
6
You can’t perform that action at this time.
0 commit comments