From 351404b6dbc98236eaba0532290bbd428beabcfd Mon Sep 17 00:00:00 2001 From: Jaroslavs Samcuks Date: Fri, 12 Aug 2022 19:59:33 +0200 Subject: [PATCH] go.mod: update x/tools to HEAD go get -u golang.org/x/tools go mod tidy x/tools/go/ssa is used by message/pipeline. Generics instantiation in x/tools@0.1.11 could be confused with container index. However, x/tools/go/ssa does have it fixed in x/tools@0.1.12 (see golang/go#52834). This change upgrades the required version to ensure that fewer users of message/pipelines have issues. Updates golang/go#54086