Skip to content

Commit

Permalink
chore: update to Go 1.15 (#1716)
Browse files Browse the repository at this point in the history
Go 1.13 went out of support when 1.15 came out a few months ago, so
let's get everything bumped up.
  • Loading branch information
dzhu authored Dec 17, 2020
1 parent ac52ec8 commit f5e58c3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ jobs:

package-and-push-system-local:
docker:
- image: cimg/go:1.13
- image: cimg/go:1.15
environment:
GO111MODULE: "on"
steps:
Expand All @@ -732,7 +732,7 @@ jobs:

package-and-push-system-dev:
docker:
- image: cimg/go:1.13
- image: cimg/go:1.15
environment:
GO111MODULE: "on"
steps:
Expand All @@ -750,7 +750,7 @@ jobs:

package-and-push-system-rc:
docker:
- image: cimg/go:1.13
- image: cimg/go:1.15
environment:
GO111MODULE: "on"
steps:
Expand All @@ -768,7 +768,7 @@ jobs:

package-and-push-system-release:
docker:
- image: cimg/go:1.13
- image: cimg/go:1.15
environment:
GO111MODULE: "on"
steps:
Expand Down Expand Up @@ -949,7 +949,7 @@ jobs:

lint-go:
docker:
- image: cimg/go:1.13
- image: cimg/go:1.15
environment:
GO111MODULE: "on"
steps:
Expand All @@ -962,7 +962,7 @@ jobs:

build-go:
docker:
- image: cimg/go:1.13
- image: cimg/go:1.15
environment:
GO111MODULE: "on"
steps:
Expand All @@ -979,7 +979,7 @@ jobs:

build-proto:
docker:
- image: cimg/go:1.13
- image: cimg/go:1.15
environment:
GO111MODULE: "on"
steps:
Expand All @@ -993,7 +993,7 @@ jobs:

test-unit-go:
docker:
- image: cimg/go:1.13
- image: cimg/go:1.15
environment:
GO111MODULE: "on"
steps:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ git clone git@github.com:determined-ai/determined.git

#### Prerequisites

- Go (>= 1.13)
- Go (>= 1.15)
- Python (>= 3.6, < 3.8)
- Node (>= 12)
- NPM (>= 6.12)
Expand Down
2 changes: 1 addition & 1 deletion agent/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/determined-ai/determined/agent

go 1.12
go 1.15

require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
Expand Down
4 changes: 2 additions & 2 deletions master/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module github.com/determined-ai/determined/master

go 1.15

require (
cloud.google.com/go v0.58.0
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
Expand Down Expand Up @@ -65,5 +67,3 @@ require (
replace github.com/determined-ai/determined/proto => ../proto

replace github.com/docker/docker v1.13.1 => github.com/docker/engine v1.4.2-0.20191113042239-ea84732a7725

go 1.13
2 changes: 1 addition & 1 deletion proto/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/determined-ai/determined/proto

go 1.13
go 1.15

require (
github.com/bufbuild/buf v0.12.1
Expand Down

0 comments on commit f5e58c3

Please sign in to comment.