From c3102003ba15e9a3401d57049be67714aa7d7208 Mon Sep 17 00:00:00 2001 From: schristoff <28318173+schristoff@users.noreply.github.com> Date: Wed, 2 Aug 2023 21:52:00 -0600 Subject: [PATCH] chore: Update pipelines to build with Go 1.20.7 (#2856) Signed-off-by: Sarah Christoff <28318173+schristoff@users.noreply.github.com> Signed-off-by: Allan Guwatudde --- build/azure-pipelines.integration.yml | 2 +- build/azure-pipelines.pr-automatic.yml | 2 +- build/azure-pipelines.release-template.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/azure-pipelines.integration.yml b/build/azure-pipelines.integration.yml index a327db46a8..c95d4b9646 100644 --- a/build/azure-pipelines.integration.yml +++ b/build/azure-pipelines.integration.yml @@ -12,7 +12,7 @@ pool: vmImage: "ubuntu-latest" variables: # these are really constants - GOVERSION: "1.20" + GOVERSION: "1.20.7" # Cache go modules and the results of go build/test # Increment the version number prefix of the key and restoreKey to clear the cache GOCACHE: $(Pipeline.Workspace)/.cache/go-build/ diff --git a/build/azure-pipelines.pr-automatic.yml b/build/azure-pipelines.pr-automatic.yml index 78c3f83027..d935003344 100644 --- a/build/azure-pipelines.pr-automatic.yml +++ b/build/azure-pipelines.pr-automatic.yml @@ -11,7 +11,7 @@ pool: vmImage: "ubuntu-latest" variables: - GOVERSION: "1.20" + GOVERSION: "1.20.7" # Cache go modules and the results of go build/test # Increment the version number prefix of the key and restoreKey to clear the cache GOCACHE: $(Pipeline.Workspace)/.cache/go-build/ diff --git a/build/azure-pipelines.release-template.yml b/build/azure-pipelines.release-template.yml index cc99a03281..69cc16ccbc 100644 --- a/build/azure-pipelines.release-template.yml +++ b/build/azure-pipelines.release-template.yml @@ -1,6 +1,6 @@ variables: # these are really constants vmImage: "ubuntu-latest" - GOVERSION: "1.20" + GOVERSION: "1.20.7" # Cache go modules and the results of go build/test # Increment the version number prefix of the key and restoreKey to clear the cache GOCACHE: $(Pipeline.Workspace)/.cache/go-build/ @@ -22,7 +22,7 @@ variables: # these are really constants parameters: - name: goVersion type: string - default: "1.20" + default: "1.20.7" - name: registry type: string default: ghcr.io/getporter/test