Skip to content

Commit ada692a

Browse files
Update minimum golang version to v1.20.12 (#2427)
1 parent 004a23e commit ada692a

18 files changed

+23
-23
lines changed

.github/workflows/auto-generated-checker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-go@v3
2020
with:
21-
go-version: '~1.20.10'
21+
go-version: '~1.20.12'
2222
check-latest: true
2323
- uses: bufbuild/buf-setup-action@v1.26.1
2424
- shell: bash
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v3
3333
- uses: actions/setup-go@v3
3434
with:
35-
go-version: '~1.20.10'
35+
go-version: '~1.20.12'
3636
check-latest: true
3737
- shell: bash
3838
run: scripts/mock.gen.sh
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/checkout@v3
4646
- uses: actions/setup-go@v3
4747
with:
48-
go-version: '~1.20.10'
48+
go-version: '~1.20.12'
4949
check-latest: true
5050
- shell: bash
5151
run: go mod tidy

.github/workflows/build-linux-binaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-go@v3
2121
with:
22-
go-version: '~1.20.10'
22+
go-version: '~1.20.12'
2323
check-latest: true
2424

2525
- run: go version
@@ -81,7 +81,7 @@ jobs:
8181

8282
- uses: actions/setup-go@v3
8383
with:
84-
go-version: '~1.20.10'
84+
go-version: '~1.20.12'
8585
check-latest: true
8686

8787
- run: go version

.github/workflows/build-macos-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v3
2727
- uses: actions/setup-go@v3
2828
with:
29-
go-version: '~1.20.10'
29+
go-version: '~1.20.12'
3030
check-latest: true
3131
- run: go version
3232

.github/workflows/build-public-ami.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v3
2020
- uses: actions/setup-go@v3
2121
with:
22-
go-version: '~1.20.10'
22+
go-version: '~1.20.12'
2323
check-latest: true
2424
- run: go version
2525

.github/workflows/build-ubuntu-amd64-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-go@v3
2020
with:
21-
go-version: '~1.20.10'
21+
go-version: '~1.20.12'
2222
check-latest: true
2323
- run: go version
2424

@@ -78,7 +78,7 @@ jobs:
7878
- uses: actions/checkout@v3
7979
- uses: actions/setup-go@v3
8080
with:
81-
go-version: '~1.20.10'
81+
go-version: '~1.20.12'
8282
check-latest: true
8383
- run: go version
8484

.github/workflows/build-ubuntu-arm64-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-go@v3
2020
with:
21-
go-version: '~1.20.10'
21+
go-version: '~1.20.12'
2222
check-latest: true
2323
- run: go version
2424

@@ -78,7 +78,7 @@ jobs:
7878
- uses: actions/checkout@v3
7979
- uses: actions/setup-go@v3
8080
with:
81-
go-version: '~1.20.10'
81+
go-version: '~1.20.12'
8282
check-latest: true
8383
- run: go version
8484

.github/workflows/build-win-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
- uses: actions/setup-go@v3
2828
with:
29-
go-version: '~1.20.10'
29+
go-version: '~1.20.12'
3030
check-latest: true
3131

3232
- run: go version

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@v3
2020
with:
21-
go-version: '~1.20.10'
21+
go-version: '~1.20.12'
2222
check-latest: true
2323
- name: Run fuzz tests
2424
shell: bash

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
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.20.10'
23+
go-version: '~1.20.12'
2424
check-latest: true
2525
- name: Run static analysis tests
2626
shell: bash

.github/workflows/test.e2e.existing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Go
2424
uses: actions/setup-go@v3
2525
with:
26-
go-version: '~1.20.10'
26+
go-version: '~1.20.12'
2727
check-latest: true
2828
- name: Build the avalanchego binary
2929
shell: bash

0 commit comments

Comments
 (0)