Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Upgrade to Go 1.15.1 #496

Merged
merged 1 commit into from
Sep 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions builders/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ steps:
- '-allow-failure'

- id: 'download-modules'
name: 'golang:1.15'
name: 'golang:1.15.1'
args:
- 'go'
- 'mod'
Expand All @@ -66,7 +66,7 @@ steps:
# adminapi
#
- id: 'build-adminapi'
name: 'golang:1.15'
name: 'golang:1.15.1'
args:
- 'go'
- 'build'
Expand All @@ -92,7 +92,7 @@ steps:
# apiserver
#
- id: 'build-apiserver'
name: 'golang:1.15'
name: 'golang:1.15.1'
args:
- 'go'
- 'build'
Expand All @@ -118,7 +118,7 @@ steps:
# cleanup
#
- id: 'build-cleanup'
name: 'golang:1.15'
name: 'golang:1.15.1'
args:
- 'go'
- 'build'
Expand All @@ -144,7 +144,7 @@ steps:
# e2e-runner
#
- id: 'build-e2e-runner'
name: 'golang:1.15'
name: 'golang:1.15.1'
args:
- 'go'
- 'build'
Expand All @@ -170,7 +170,7 @@ steps:
# migrate
#
- id: 'build-migrate'
name: 'golang:1.15'
name: 'golang:1.15.1'
args:
- 'go'
- 'build'
Expand All @@ -196,7 +196,7 @@ steps:
# server
#
- id: 'build-server'
name: 'golang:1.15'
name: 'golang:1.15.1'
args:
- 'go'
- 'build'
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/google/exposure-notifications-verification-server

go 1.14
go 1.15

require (
cloud.google.com/go v0.65.0
Expand Down