From 115f02d7cd172607152626a0308b2cbdb668c52f Mon Sep 17 00:00:00 2001 From: CedarMist <134699267+CedarMist@users.noreply.github.com> Date: Wed, 27 Mar 2024 17:47:13 +0000 Subject: [PATCH] fix: go 1.22.1 fixes 'toolchain not available' This fixes a bug, without full revision specified in version, causes: go: downloading go1.22 (linux/amd64) go: download go1.22 for linux/amd64: toolchain not available The discussion is available at: https://github.com/golang/go/issues/62278 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index e1821bf1..b15e403f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/oasisprotocol/oasis-web3-gateway -go 1.22 +go 1.22.1 replace ( // Should be synced with Oasis Core as replace directives are not propagated.