Skip to content

Commit 40681fe

Browse files
committed
Update to Go 1.17
1 parent 79607f2 commit 40681fe

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
backend:
2323
docker:
24-
- image: circleci/golang:1.16
24+
- image: circleci/golang:1.17
2525
working_directory: /go/src/github.com/RoboCup-SSL/ssl-game-controller
2626
steps:
2727
- checkout
@@ -47,7 +47,7 @@ jobs:
4747

4848
publish-github-release:
4949
docker:
50-
- image: circleci/golang:1.16
50+
- image: circleci/golang:1.17
5151
steps:
5252
- attach_workspace:
5353
at: .

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY . .
44
RUN yarn install
55
RUN yarn build
66

7-
FROM golang:1.16-alpine AS build_go
7+
FROM golang:1.17-alpine AS build_go
88
WORKDIR /go/src/github.com/RoboCup-SSL/ssl-game-controller
99
COPY . .
1010
COPY --from=build_node /tmp/ssl-game-controller/dist dist

go.mod

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/RoboCup-SSL/ssl-game-controller
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/go-test/deep v1.0.8
@@ -11,3 +11,10 @@ require (
1111
google.golang.org/protobuf v1.27.1
1212
gopkg.in/yaml.v2 v2.4.0
1313
)
14+
15+
require (
16+
github.com/gobuffalo/envy v1.7.0 // indirect
17+
github.com/gobuffalo/packd v0.3.0 // indirect
18+
github.com/joho/godotenv v1.3.0 // indirect
19+
github.com/rogpeppe/go-internal v1.3.0 // indirect
20+
)

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ github.com/gobuffalo/packd v0.3.0/go.mod h1:zC7QkmNkYVGKPw4tHpBQ+ml7W/3tIebgeo1b
1818
github.com/gobuffalo/packr v1.30.1 h1:hu1fuVR3fXEZR7rXNW3h8rqSML8EVAf6KNm0NKO/wKg=
1919
github.com/gobuffalo/packr v1.30.1/go.mod h1:ljMyFO2EcrnzsHsN99cvbq055Y9OhRrIaviy289eRuk=
2020
github.com/gobuffalo/packr/v2 v2.5.1/go.mod h1:8f9c96ITobJlPzI44jj+4tHnEKNt0xXWSVlXRN9X1Iw=
21-
github.com/golang/protobuf v1.5.0 h1:LUVKkCeviFUMKqHa4tXIIij/lbhnMbP7Fn5wKdKkRh4=
2221
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
2322
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
2423
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=

0 commit comments

Comments
 (0)