Skip to content

Commit

Permalink
update go from 1.14.15 to 1.17.13 and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmoraisjr committed Feb 10, 2023
1 parent 7ae609a commit 2554d7f
Show file tree
Hide file tree
Showing 5 changed files with 384 additions and 118 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/setup-go@v1
with:
go-version: 1.14.15
go-version: 1.17.13
- uses: actions/checkout@v2
- name: Run build
run: go build -o haproxy-ingress pkg/main.go
Expand Down
2 changes: 1 addition & 1 deletion builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.14.15-alpine AS builder
FROM golang:1.17.13-alpine AS builder

ARG GIT_TAG

Expand Down
75 changes: 58 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,27 +1,68 @@
module github.com/jcmoraisjr/haproxy-ingress

go 1.14
go 1.17

require (
github.com/Masterminds/goutils v1.1.0 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Masterminds/sprig v2.22.0+incompatible
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/huandu/xstrings v1.3.2 // indirect
github.com/imdario/mergo v0.3.5
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a
github.com/golang/glog v1.0.0
github.com/imdario/mergo v0.3.13
github.com/jinzhu/copier v0.3.5
github.com/kylelemons/godebug v1.1.0
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/mapstructure v1.1.2
github.com/mitchellh/mapstructure v1.5.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.7.1
github.com/prometheus/client_golang v1.14.0
github.com/spf13/pflag v1.0.5
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
golang.org/x/crypto v0.6.0
gopkg.in/go-playground/pool.v3 v3.1.1
gopkg.in/yaml.v2 v2.2.8
k8s.io/api v0.19.16
k8s.io/apimachinery v0.19.16
k8s.io/apiserver v0.19.16
k8s.io/client-go v0.19.16
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.21.14
k8s.io/apimachinery v0.21.14
k8s.io/apiserver v0.21.14
k8s.io/client-go v0.21.14
)

require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
github.com/evanphx/json-patch v4.9.0+incompatible // indirect
github.com/go-logr/logr v0.4.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/google/gofuzz v1.1.0 // indirect
github.com/google/uuid v1.1.2 // indirect
github.com/googleapis/gnostic v0.4.1 // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/huandu/xstrings v1.4.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
golang.org/x/net v0.6.0 // indirect
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/term v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
k8s.io/component-base v0.21.14 // indirect
k8s.io/klog/v2 v2.9.0 // indirect
k8s.io/kube-openapi v0.0.0-20211110012726-3cc51fd1e909 // indirect
k8s.io/utils v0.0.0-20211116205334-6203023598ed // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
sigs.k8s.io/yaml v1.2.0 // indirect
)
Loading

0 comments on commit 2554d7f

Please sign in to comment.