Skip to content

Commit

Permalink
Updating golang version to fix a few vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
soorena776 committed Oct 27, 2021
1 parent 4e8b12d commit d94239f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion artifacts/images/agent-build.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the proxy-agent binary
FROM golang:1.16.5 as builder
FROM golang:1.17.2 as builder

# Copy in the go src
WORKDIR /go/src/sigs.k8s.io/apiserver-network-proxy
Expand Down
2 changes: 1 addition & 1 deletion artifacts/images/client-build.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the client binary
FROM golang:1.16.5 as builder
FROM golang:1.17.2 as builder

# Copy in the go src
WORKDIR /go/src/sigs.k8s.io/apiserver-network-proxy
Expand Down
2 changes: 1 addition & 1 deletion artifacts/images/server-build.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the proxy-server binary
FROM golang:1.16.5 as builder
FROM golang:1.17.2 as builder

# Copy in the go src
WORKDIR /go/src/sigs.k8s.io/apiserver-network-proxy
Expand Down
2 changes: 1 addition & 1 deletion artifacts/images/test-server-build.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the http test server binary
FROM golang:1.16.5 as builder
FROM golang:1.17.2 as builder

# Copy in the go src
WORKDIR /go/src/sigs.k8s.io/apiserver-network-proxy
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 sigs.k8s.io/apiserver-network-proxy

go 1.16
go 1.17

require (
github.com/golang/mock v1.4.4
Expand Down
2 changes: 1 addition & 1 deletion konnectivity-client/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module sigs.k8s.io/apiserver-network-proxy/konnectivity-client

go 1.13
go 1.17

require (
github.com/golang/protobuf v1.4.0
Expand Down

0 comments on commit d94239f

Please sign in to comment.