Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update min go version to go1.22.8 #1672

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/contracts-tutorial/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

"features": {
"ghcr.io/devcontainers/features/go:1": {
"version": "1.21.12"
"version": "1.22.8"
},
"ghcr.io/devcontainers/features/rust:1": {},
"ghcr.io/devcontainers/features/common-utils:2": {
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/install-go/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ runs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21.10'
go-version: '1.22.8'
cache: ${{ inputs.cache }}
cache-dependency-path: ${{ inputs.cache-dependency-path }}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Thank you for your interest in contributing to `hypersdk`! By contributing to hy

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

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

### Setting up your development environment

Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/morpheusvm/morpheusvm.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This introduction will go over everything up to and including the section

## Prerequisites

- You are using Go 1.21.12
- You are using Go 1.22.8

To confirm, you can run:

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

```
go version go1.21.12 darwin/arm64
go version go1.22.8 darwin/arm64
```

## Cloning HyperSDK
Expand Down
2 changes: 1 addition & 1 deletion examples/morpheusvm/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ava-labs/hypersdk/examples/morpheusvm

go 1.21.12
go 1.22.8

require (
github.com/ava-labs/avalanchego v1.11.12-rc.2.0.20241001202925-f03745d187d0
Expand Down
2 changes: 1 addition & 1 deletion examples/vmwithcontracts/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ava-labs/hypersdk/examples/vmwithcontracts

go 1.21.12
go 1.22.8

require (
github.com/ava-labs/avalanchego v1.11.12-rc.2.0.20241001202925-f03745d187d0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ava-labs/hypersdk

go 1.21.12
go 1.22.8

require (
github.com/ava-labs/avalanchego v1.11.12-rc.2.0.20241001202925-f03745d187d0
Expand Down
Loading