Skip to content

Commit 74a0a5a

Browse files
authored
Merge pull request #637 from CosmWasm/min-go-1.22
Bump min Go version to 1.22
2 parents dcc5b11 + 12962df commit 74a0a5a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168

169169
format-go:
170170
docker:
171-
- image: cimg/go:1.21.4
171+
- image: cimg/go:1.22.12
172172
steps:
173173
- run:
174174
name: Install gofumpt
@@ -186,7 +186,7 @@ jobs:
186186
# Build types and cosmwam package without cgo
187187
wasmvm_no_cgo:
188188
docker:
189-
- image: cimg/go:1.21.4
189+
- image: cimg/go:1.22.12
190190
steps:
191191
- checkout
192192
- run:
@@ -205,7 +205,7 @@ jobs:
205205
# Build types and cosmwasm with libwasmvm linking disabled
206206
nolink_libwasmvm:
207207
docker:
208-
- image: cimg/go:1.21.4
208+
- image: cimg/go:1.22.12
209209
steps:
210210
- checkout
211211
- run:
@@ -223,7 +223,7 @@ jobs:
223223

224224
tidy-go:
225225
docker:
226-
- image: cimg/go:1.21.4
226+
- image: cimg/go:1.22.12
227227
steps:
228228
- checkout
229229
- run:
@@ -241,7 +241,7 @@ jobs:
241241
242242
format-scripts:
243243
docker:
244-
- image: cimg/go:1.21.4
244+
- image: cimg/go:1.22.12
245245
steps:
246246
- run:
247247
name: Install shfmt
@@ -299,7 +299,7 @@ jobs:
299299
# Test the Go project and run benchmarks
300300
wasmvm_test:
301301
docker:
302-
- image: cimg/go:1.21.4
302+
- image: cimg/go:1.22.12
303303
environment:
304304
GORACE: "halt_on_error=1"
305305
BUILD_VERSION: $(echo ${CIRCLE_SHA1} | cut -c 1-10)

Dockerfile.alpine_tester

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.21.4-alpine
1+
FROM golang:1.22.12-alpine
22

33
RUN apk add build-base
44

go.mod

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

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/google/btree v1.0.0

0 commit comments

Comments
 (0)