Skip to content

Commit 2d513e2

Browse files
committed
bump go version
1 parent 41e572c commit 2d513e2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v3
1919
with:
20-
go-version: '1.19'
20+
go-version: '~1.20.8'
2121
check-latest: true
2222
- name: Run static analysis tests
2323
shell: bash
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/checkout@v3
3030
- uses: actions/setup-go@v3
3131
with:
32-
go-version: '1.19'
32+
go-version: '~1.20.8'
3333
- run: go test -v -timeout 10m -race ./...
3434
env:
3535
CGO_CFLAGS: "-O -D__BLST_PORTABLE__" # Set the CGO flags to use the portable version of BLST
@@ -47,7 +47,7 @@ jobs:
4747
- name: Set up Go
4848
uses: actions/setup-go@v3
4949
with:
50-
go-version: '1.19'
50+
go-version: '~1.20.8'
5151
- name: Run e2e tests
5252
shell: bash
5353
run: scripts/tests.e2e.sh

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v3
2222
with:
23-
go-version: '1.19'
23+
go-version: '~1.20.8'
2424
- name: Set up arm64 cross compiler
2525
run: |
2626
sudo apt-get -y update

.golangci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ linters-settings:
9595
- name: useless-break
9696
disabled: false
9797
staticcheck:
98-
go: "1.19"
98+
go: '~1.20.8'
9999
# https://staticcheck.io/docs/options#checks
100100
checks:
101101
- "all"

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ava-labs/avalanche-network-runner
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/ava-labs/avalanchego v1.10.10

0 commit comments

Comments
 (0)