Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d9d46fd

Browse files
committedSep 15, 2022
[#3579] Update go 1.17 and golang.org/x/sys lib
Updates Go to 1.17 as golang.org/x/sys only allows 2 versions behind the latest one. Go 1.19 was released last month.
1 parent 62295e6 commit d9d46fd

File tree

152 files changed

+6560
-2956
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+6560
-2956
lines changed
 

‎.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
type: string
112112
default: ""
113113
docker:
114-
- image: circleci/golang:1.16
114+
- image: circleci/golang:1.17
115115
environment:
116116
PROVIDER: <<parameters.provider>>
117117
ARGS: <<parameters.args>>
@@ -130,14 +130,14 @@ jobs:
130130
when: always
131131
cleanup:
132132
docker:
133-
- image: circleci/golang:1.16
133+
- image: circleci/golang:1.17
134134
steps:
135135
- checkout
136136
- ci-dependencies
137137
- run: scripts/ci-cleanup
138138
cleanup_all:
139139
docker:
140-
- image: circleci/golang:1.16
140+
- image: circleci/golang:1.17
141141
steps:
142142
- checkout
143143
- ci-dependencies
@@ -151,14 +151,14 @@ jobs:
151151
repo:
152152
type: string
153153
docker:
154-
- image: circleci/golang:1.16
154+
- image: circleci/golang:1.17
155155
steps:
156156
- checkout
157157
- ci-dependencies
158158
- run: ci/deploy.sh <<parameters.repo>> <<parameters.app>> <<parameters.check>>
159159
test:
160160
docker:
161-
- image: circleci/golang:1.16
161+
- image: circleci/golang:1.17
162162
working_directory: /go/src/github.com/convox/rack
163163
steps:
164164
- checkout
@@ -170,7 +170,7 @@ jobs:
170170
- run: curl -s https://codecov.io/bash | bash
171171
update:
172172
docker:
173-
- image: circleci/golang:1.16
173+
- image: circleci/golang:1.17
174174
steps:
175175
- checkout
176176
- ci-dependencies

‎Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## test ########################################################################
22

3-
FROM golang:1.16 AS test
3+
FROM golang:1.17 AS test
44

55
ARG DOCKER_ARCH=x86_64
66
ARG KUBECTL_ARCH=amd64
@@ -48,7 +48,7 @@ CMD ["bin/web"]
4848

4949
## package #####################################################################
5050

51-
FROM golang:1.16 AS package
51+
FROM golang:1.17 AS package
5252

5353
RUN apt-get update && apt-get -y install upx-ucl
5454

0 commit comments

Comments
 (0)
Please sign in to comment.