diff options
author | sudoforge <no-reply@sudoforge.com> | 2024-07-18 21:40:41 -0700 |
---|---|---|
committer | sudoforge <9c001b67637a@sudoforge.com> | 2024-07-20 07:44:23 -0700 |
commit | f79ea38c8f5ef0f201e3f824b818247777fedc0a (patch) | |
tree | 94d90e38b9b35d93e9250bbafa3303f1e797686b /.github/workflows | |
parent | 76de669db1eeb3c6a5e6f5be956b3fda0eee3ae4 (diff) | |
download | git-bug-f79ea38c8f5ef0f201e3f824b818247777fedc0a.tar.gz |
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
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/benchmark.yml | 2 | ||||
-rw-r--r-- | .github/workflows/go.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 16fb5d7e..4c0e0cf1 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: 1.19.4 + go-version: 1.22.5 - uses: actions/checkout@v3 # Run benchmark with `go test -bench` and stores the output to a file - name: Run benchmark diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d0f2585d..7ec99351 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - go-version: [1.19.4] + go-version: [1.22.5] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 80751500..aa5fbcc2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19.4 + go-version: 1.22.5 - name: Check out code uses: actions/checkout@v2 |