File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
name : Continuous Integration
2
2
3
3
env :
4
- GO_VERSION : 1.24
4
+ GO_VERSION : 1.25
5
5
6
6
on :
7
7
push :
32
32
- name : Setup Go
33
33
uses : actions/setup-go@v5
34
34
with :
35
- go-version : 1.24 .x
35
+ go-version : 1.25 .x
36
36
- name : Test code
37
37
# we're passing -short so that we skip the integration tests, which will be run in parallel below
38
38
run : |
87
87
- name : Setup Go
88
88
uses : actions/setup-go@v5
89
89
with :
90
- go-version : 1.24 .x
90
+ go-version : 1.25 .x
91
91
- name : Print git version
92
92
run : git --version
93
93
- name : Test code
@@ -113,7 +113,7 @@ jobs:
113
113
- name : Setup Go
114
114
uses : actions/setup-go@v5
115
115
with :
116
- go-version : 1.24 .x
116
+ go-version : 1.25 .x
117
117
- name : Build linux binary
118
118
run : |
119
119
GOOS=linux go build
@@ -140,7 +140,7 @@ jobs:
140
140
- name : Setup Go
141
141
uses : actions/setup-go@v5
142
142
with :
143
- go-version : 1.24 .x
143
+ go-version : 1.25 .x
144
144
- name : Check Vendor Directory
145
145
# ensure our vendor directory matches up with our go modules
146
146
run : |
@@ -166,12 +166,12 @@ jobs:
166
166
- name : Setup Go
167
167
uses : actions/setup-go@v5
168
168
with :
169
- go-version : 1.24 .x
169
+ go-version : 1.25 .x
170
170
- name : Lint
171
171
uses : golangci/golangci-lint-action@v8
172
172
with :
173
173
# If you change this, make sure to also update scripts/golangci-lint-shim.sh
174
- version : v2.2.1
174
+ version : v2.4.0
175
175
- name : errors
176
176
run : golangci-lint run
177
177
if : ${{ failure() }}
@@ -187,7 +187,7 @@ jobs:
187
187
- name : Setup Go
188
188
uses : actions/setup-go@v5
189
189
with :
190
- go-version : 1.24 .x
190
+ go-version : 1.25 .x
191
191
192
192
- name : Download all coverage artifacts
193
193
uses : actions/download-artifact@v4
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ jobs:
139
139
- name : Setup Go
140
140
uses : actions/setup-go@v5
141
141
with :
142
- go-version : 1.24 .x
142
+ go-version : 1.25 .x
143
143
144
144
- name : Run goreleaser
145
145
uses : goreleaser/goreleaser-action@v6
Original file line number Diff line number Diff line change 1
1
version : " 2"
2
2
run :
3
- go : " 1.24 "
3
+ go : " 1.25 "
4
4
linters :
5
5
enable :
6
6
- copyloopvar
Original file line number Diff line number Diff line change 2
2
# docker build -t lazygit .
3
3
# docker run -it lazygit:latest /bin/sh
4
4
5
- FROM golang:1.24 as build
5
+ FROM golang:1.25 as build
6
6
WORKDIR /go/src/github.com/jesseduffield/lazygit/
7
7
COPY go.mod go.sum ./
8
8
RUN go mod download
Original file line number Diff line number Diff line change 1
1
module github.com/jesseduffield/lazygit
2
2
3
- go 1.24 .0
3
+ go 1.25 .0
4
4
5
5
require (
6
6
dario.cat/mergo v1.0.1
Original file line number Diff line number Diff line change 3
3
set -e
4
4
5
5
# Must be kept in sync with the version in .github/workflows/ci.yml
6
- version=" v2.2.1 "
6
+ version=" v2.4.0 "
7
7
8
8
go run " github.com/golangci/golangci-lint/v2/cmd/golangci-lint@$version " " $@ "
You can’t perform that action at this time.
0 commit comments