Skip to content

Commit 65dee5f

Browse files
authored
Merge pull request #2061 from justaugustus/go116
[go1.16] Update kubernetes/kubernetes dependents to use go1.16.4
2 parents ee7bae3 + cd120ad commit 65dee5f

File tree

8 files changed

+19
-11
lines changed

8 files changed

+19
-11
lines changed

Dockerfile-kubepkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.16.3 AS builder
15+
FROM golang:1.16.4 AS builder
1616

1717
ENV GO111MODULE=on
1818

Dockerfile-kubepkg-rpm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.16.3 AS builder
15+
FROM golang:1.16.4 AS builder
1616

1717
ENV GO111MODULE=on
1818

dependencies.yaml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ dependencies:
6666
- name: "golang"
6767
version: 1.16.4
6868
refPaths:
69+
- path: Dockerfile-kubepkg
70+
match: FROM golang:\d+.\d+(alpha|beta|rc)?\.?(\d+) AS builder
71+
- path: Dockerfile-kubepkg-rpm
72+
match: FROM golang:\d+.\d+(alpha|beta|rc)?\.?(\d+) AS builder
6973
- path: cmd/vulndash/Makefile
7074
match: GO_VERSION\ \?=\ \d+.\d+(alpha|beta|rc)?\.?(\d+)?
7175
- path: cmd/vulndash/variants.yaml
@@ -80,6 +84,10 @@ dependencies:
8084
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
8185
- path: images/releng/ci/cloudbuild.yaml
8286
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
87+
- path: images/releng/k8s-ci-builder/Makefile
88+
match: GO_VERSION\ \?=\ \d+.\d+(alpha|beta|rc)?\.?(\d+)?
89+
- path: packages/deb/Dockerfile
90+
match: FROM golang:\d+.\d+(alpha|beta|rc)?\.?(\d+)
8391

8492
# Golang pre-releases are denoted as `1.y<pre-release stage>.z`
8593
# Example: go1.16rc1
@@ -93,10 +101,10 @@ dependencies:
93101
match: GO_VERSION\ \?=\ \d+.\d+(alpha|beta|rc)?\.?(\d+)?
94102

95103
- name: "golang: after kubernetes/kubernetes update"
96-
version: 1.16.3
104+
version: 1.16.4
97105
refPaths:
98106
- path: images/releng/k8s-ci-builder/Dockerfile
99-
match: FROM golang:\d+.\d+(alpha|beta|rc)?\.?(\d+) as builder
107+
match: FROM golang:\d+.\d+(alpha|beta|rc)?\.?(\d+) AS builder
100108
- path: images/releng/k8s-ci-builder/variants.yaml
101109
match: \d+.\d+(alpha|beta|rc)?\.?(\d+)?
102110

@@ -151,7 +159,7 @@ dependencies:
151159
match: go\d+.\d+
152160

153161
- name: "k8s.gcr.io/build-image/kube-cross: dependents"
154-
version: v1.16.3-1
162+
version: v1.16.4-1
155163
refPaths:
156164
- path: images/k8s-cloud-builder/variants.yaml
157165
match: v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)-\d+

images/k8s-cloud-builder/variants.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variants:
22
cross1.16:
33
CONFIG: 'cross1.16'
4-
KUBE_CROSS_VERSION: 'v1.16.3-1'
4+
KUBE_CROSS_VERSION: 'v1.16.4-1'
55
SKOPEO_VERSION: 'v1.2.0'
66
cross1.15:
77
CONFIG: 'cross1.15'

images/releng/k8s-ci-builder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ARG OLD_BAZEL_VERSION
1717

1818
# The Golang version for the builder image should always be explicitly set to
1919
# the Golang version of the kubernetes/kubernetes active development branch
20-
FROM golang:1.16.3 as builder
20+
FROM golang:1.16.4 AS builder
2121

2222
WORKDIR /go/src/k8s.io/release
2323

images/releng/k8s-ci-builder/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ IMAGE = $(REGISTRY)/$(IMGNAME)
2424
TAG ?= $(shell git describe --tags --always --dirty)
2525

2626
# Build args
27-
GO_VERSION ?= 1.16.0
27+
GO_VERSION ?= 1.16.4
2828
BAZEL_VERSION ?= 3.4.1
2929
OLD_BAZEL_VERSION ?= 2.2.0
3030
IMAGE_ARG ?= $(IMAGE):$(TAG)-$(CONFIG)

images/releng/k8s-ci-builder/variants.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
variants:
22
default:
33
CONFIG: default
4-
GO_VERSION: '1.16.3'
4+
GO_VERSION: '1.16.4'
55
BAZEL_VERSION: '3.4.1'
66
OLD_BAZEL_VERSION: '2.2.0'
77
SKOPEO_VERSION: 'v1.2.0'
88
'1.21':
99
CONFIG: '1.21'
10-
GO_VERSION: '1.16.3'
10+
GO_VERSION: '1.16.4'
1111
BAZEL_VERSION: '3.4.1'
1212
OLD_BAZEL_VERSION: '2.2.0'
1313
SKOPEO_VERSION: 'v1.2.0'

packages/deb/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.16.3
15+
FROM golang:1.16.4
1616

1717
RUN export DEBIAN_FRONTEND=noninteractive \
1818
&& apt-get update -y \

0 commit comments

Comments
 (0)