From 458b787cc1c705021c8ae181def47cda8b1a66e0 Mon Sep 17 00:00:00 2001 From: David Shiflet Date: Thu, 12 Dec 2024 12:53:16 -0600 Subject: [PATCH] use correct version for go toolchain (#560) --- .pipelines/include-install-go-tools.yml | 2 +- go.mod | 2 +- go.sum | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.pipelines/include-install-go-tools.yml b/.pipelines/include-install-go-tools.yml index bcd7053b..cacb1d51 100644 --- a/.pipelines/include-install-go-tools.yml +++ b/.pipelines/include-install-go-tools.yml @@ -1,7 +1,7 @@ steps: - task: GoTool@0 inputs: - version: '1.22' + version: '1.22.10' - task: Go@0 displayName: 'Go: get dependencies' inputs: diff --git a/go.mod b/go.mod index 231d2045..1709d526 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/microsoft/go-sqlcmd -go 1.22 +go 1.22.10 require ( github.com/alecthomas/chroma/v2 v2.5.0 diff --git a/go.sum b/go.sum index b31d70b3..c2dfddca 100644 --- a/go.sum +++ b/go.sum @@ -391,8 +391,6 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= -golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=