Skip to content

Commit f79ea38

Browse files
committed
fix: bump to go v1.22.5
The GHA build pipeline is failing with an error: package crypto/ecdh is not in GOROOT (/opt/hostedtoolcache/go/1.19.4/x64/src/crypto/ecdh) crypto/ecdh was added in Go 1.21 [0]. This change updates the matrix of Go versions that the pipelines use to the latest, in order to resolve this error. [0]: https://tip.golang.org/doc/go1.21
1 parent 76de669 commit f79ea38

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/setup-go@v3
2020
with:
21-
go-version: 1.19.4
21+
go-version: 1.22.5
2222
- uses: actions/checkout@v3
2323
# Run benchmark with `go test -bench` and stores the output to a file
2424
- name: Run benchmark

.github/workflows/go.yml

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

1313
strategy:
1414
matrix:
15-
go-version: [1.19.4]
15+
go-version: [1.22.5]
1616
platform: [ubuntu-latest, macos-latest, windows-latest]
1717

1818
runs-on: ${{ matrix.platform }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Go
1515
uses: actions/setup-go@v3
1616
with:
17-
go-version: 1.19.4
17+
go-version: 1.22.5
1818

1919
- name: Check out code
2020
uses: actions/checkout@v2

0 commit comments

Comments
 (0)