Skip to content

Commit 87cf88a

Browse files
Update min go version to go1.22.8 (#1672)
1 parent 22241f5 commit 87cf88a

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.devcontainer/contracts-tutorial/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"features": {
77
"ghcr.io/devcontainers/features/go:1": {
8-
"version": "1.21.12"
8+
"version": "1.22.8"
99
},
1010
"ghcr.io/devcontainers/features/rust:1": {},
1111
"ghcr.io/devcontainers/features/common-utils:2": {

.github/actions/install-go/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ runs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.21.10'
20+
go-version: '1.22.8'
2121
cache: ${{ inputs.cache }}
2222
cache-dependency-path: ${{ inputs.cache-dependency-path }}

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Thank you for your interest in contributing to `hypersdk`! By contributing to hy
88

99
To contribute to `hypersdk`, you'll need:
1010

11-
- [Go](https://golang.org/dl/) 1.21 or higher
11+
- [Go](https://golang.org/dl/) 1.22.8 or higher
1212

1313
### Setting up your development environment
1414

docs/tutorials/morpheusvm/morpheusvm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This introduction will go over everything up to and including the section
2121

2222
## Prerequisites
2323

24-
- You are using Go 1.21.12
24+
- You are using Go 1.22.8
2525

2626
To confirm, you can run:
2727

@@ -32,7 +32,7 @@ go version
3232
And you should see the ouptut (slightly different depending on your machine):
3333

3434
```
35-
go version go1.21.12 darwin/arm64
35+
go version go1.22.8 darwin/arm64
3636
```
3737

3838
## Cloning HyperSDK

examples/morpheusvm/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ava-labs/hypersdk/examples/morpheusvm
22

3-
go 1.21.12
3+
go 1.22.8
44

55
require (
66
github.com/ava-labs/avalanchego v1.11.12-rc.2.0.20241001202925-f03745d187d0

examples/vmwithcontracts/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ava-labs/hypersdk/examples/vmwithcontracts
22

3-
go 1.21.12
3+
go 1.22.8
44

55
require (
66
github.com/ava-labs/avalanchego v1.11.12-rc.2.0.20241001202925-f03745d187d0

go.mod

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

3-
go 1.21.12
3+
go 1.22.8
44

55
require (
66
github.com/ava-labs/avalanchego v1.11.12-rc.2.0.20241001202925-f03745d187d0

0 commit comments

Comments
 (0)