Skip to content

Commit d17c0d2

Browse files
authored
chore: Update pipelines to build with Go 1.20.7 (getporter#2856)
Signed-off-by: Sarah Christoff <[email protected]>
1 parent 6b38bd4 commit d17c0d2

3 files changed

+4
-4
lines changed

build/azure-pipelines.integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pool:
1212
vmImage: "ubuntu-latest"
1313

1414
variables: # these are really constants
15-
GOVERSION: "1.20"
15+
GOVERSION: "1.20.7"
1616
# Cache go modules and the results of go build/test
1717
# Increment the version number prefix of the key and restoreKey to clear the cache
1818
GOCACHE: $(Pipeline.Workspace)/.cache/go-build/

build/azure-pipelines.pr-automatic.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pool:
1111
vmImage: "ubuntu-latest"
1212

1313
variables:
14-
GOVERSION: "1.20"
14+
GOVERSION: "1.20.7"
1515
# Cache go modules and the results of go build/test
1616
# Increment the version number prefix of the key and restoreKey to clear the cache
1717
GOCACHE: $(Pipeline.Workspace)/.cache/go-build/

build/azure-pipelines.release-template.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
variables: # these are really constants
22
vmImage: "ubuntu-latest"
3-
GOVERSION: "1.20"
3+
GOVERSION: "1.20.7"
44
# Cache go modules and the results of go build/test
55
# Increment the version number prefix of the key and restoreKey to clear the cache
66
GOCACHE: $(Pipeline.Workspace)/.cache/go-build/
@@ -22,7 +22,7 @@ variables: # these are really constants
2222
parameters:
2323
- name: goVersion
2424
type: string
25-
default: "1.20"
25+
default: "1.20.7"
2626
- name: registry
2727
type: string
2828
default: ghcr.io/getporter/test

0 commit comments

Comments
 (0)