Skip to content

Commit ada8dbb

Browse files
Update golang version and dependencies
Signed-off-by: faizanahmad055 <faizan.ahmad55@outlook.com>
1 parent cfe1754 commit ada8dbb

File tree

6 files changed

+96
-490
lines changed

6 files changed

+96
-490
lines changed

.github/workflows/pull_request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
DOCKER_FILE_PATH: Dockerfile
10-
GOLANG_VERSION: 1.19.3
10+
GOLANG_VERSION: 1.19.5
1111
KUBERNETES_VERSION: "1.18.0"
1212
KIND_VERSION: "0.10.0"
1313

.github/workflows/push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
DOCKER_FILE_PATH: Dockerfile
10-
GOLANG_VERSION: 1.19.3
10+
GOLANG_VERSION: 1.19.5
1111
KUBERNETES_VERSION: "1.18.0"
1212
KIND_VERSION: "0.10.0"
1313
HELM_REGISTRY_URL: "https://stakater.github.io/stakater-charts"

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "v*"
77

88
env:
9-
GOLANG_VERSION: 1.19.3
9+
GOLANG_VERSION: 1.19.5
1010

1111
jobs:
1212
build:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG BUILDER_IMAGE
22
ARG BASE_IMAGE
33

44
# Build the manager binary
5-
FROM --platform=${BUILDPLATFORM} ${BUILDER_IMAGE:-golang:1.19.3} as builder
5+
FROM --platform=${BUILDPLATFORM} ${BUILDER_IMAGE:-golang:1.19.5} as builder
66

77
ARG TARGETOS
88
ARG TARGETARCH

go.mod

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@ module github.com/stakater/Reloader
33
go 1.19
44

55
require (
6-
github.com/argoproj/argo-rollouts v1.3.1
6+
github.com/argoproj/argo-rollouts v1.4.0
77
github.com/openshift/api v0.0.0-20210527122704-efd9d5958e01
88
github.com/openshift/client-go v0.0.0-20210521082421-73d9475a9142
99
github.com/parnurzeal/gorequest v0.2.16
10-
github.com/prometheus/client_golang v1.12.2
11-
github.com/sirupsen/logrus v1.8.1
12-
github.com/spf13/cobra v1.5.0
13-
k8s.io/api v0.24.2
14-
k8s.io/apimachinery v0.24.2
15-
k8s.io/client-go v0.24.2
16-
k8s.io/kubectl v0.24.2
10+
github.com/prometheus/client_golang v1.14.0
11+
github.com/sirupsen/logrus v1.9.0
12+
github.com/spf13/cobra v1.6.1
13+
k8s.io/api v0.26.1
14+
k8s.io/apimachinery v0.26.1
15+
k8s.io/client-go v0.26.1
16+
k8s.io/kubectl v0.26.1
1717
)
1818

1919
require (
2020
github.com/beorn7/perks v1.0.1 // indirect
21-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
21+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2222
github.com/davecgh/go-spew v1.1.1 // indirect
23-
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
23+
github.com/emicklei/go-restful/v3 v3.10.1 // indirect
2424
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
2525
github.com/go-logr/logr v1.2.3 // indirect
2626
github.com/go-openapi/jsonpointer v0.19.5 // indirect
@@ -30,39 +30,40 @@ require (
3030
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3131
github.com/golang/protobuf v1.5.2 // indirect
3232
github.com/google/gnostic v0.6.9 // indirect
33-
github.com/google/go-cmp v0.5.8 // indirect
33+
github.com/google/go-cmp v0.5.9 // indirect
3434
github.com/google/gofuzz v1.2.0 // indirect
3535
github.com/imdario/mergo v0.3.13 // indirect
36-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
36+
github.com/inconshreveable/mousetrap v1.0.1 // indirect
3737
github.com/josharian/intern v1.0.0 // indirect
3838
github.com/json-iterator/go v1.1.12 // indirect
3939
github.com/mailru/easyjson v0.7.7 // indirect
40-
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
40+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
4141
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
4242
github.com/modern-go/reflect2 v1.0.2 // indirect
4343
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4444
github.com/pkg/errors v0.9.1 // indirect
45-
github.com/prometheus/client_model v0.2.0 // indirect
46-
github.com/prometheus/common v0.36.0 // indirect
47-
github.com/prometheus/procfs v0.7.3 // indirect
45+
github.com/prometheus/client_model v0.3.0 // indirect
46+
github.com/prometheus/common v0.39.0 // indirect
47+
github.com/prometheus/procfs v0.8.0 // indirect
48+
github.com/smartystreets/goconvey v1.7.2 // indirect
4849
github.com/spf13/pflag v1.0.5 // indirect
49-
golang.org/x/net v0.0.0-20220906165146-f3363e06e74c // indirect
50-
golang.org/x/oauth2 v0.0.0-20220630143837-2104d58473e0 // indirect
51-
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
52-
golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
53-
golang.org/x/text v0.3.8 // indirect
50+
golang.org/x/net v0.4.0 // indirect
51+
golang.org/x/oauth2 v0.3.0 // indirect
52+
golang.org/x/sys v0.3.0 // indirect
53+
golang.org/x/term v0.3.0 // indirect
54+
golang.org/x/text v0.5.0 // indirect
5455
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
5556
google.golang.org/appengine v1.6.7 // indirect
56-
google.golang.org/protobuf v1.28.0 // indirect
57+
google.golang.org/protobuf v1.28.1 // indirect
5758
gopkg.in/inf.v0 v0.9.1 // indirect
5859
gopkg.in/yaml.v2 v2.4.0 // indirect
5960
gopkg.in/yaml.v3 v3.0.1 // indirect
60-
k8s.io/klog/v2 v2.70.1 // indirect
61-
k8s.io/kube-openapi v0.0.0-20220627174259-011e075b9cb8 // indirect
62-
k8s.io/utils v0.0.0-20220706174534-f6158b442e7c // indirect
61+
k8s.io/klog/v2 v2.80.1 // indirect
62+
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
63+
k8s.io/utils v0.0.0-20221107191617-1a15be271d1d // indirect
6364
moul.io/http2curl v1.0.0 // indirect
64-
sigs.k8s.io/json v0.0.0-20220525155127-227cbc7cc124 // indirect
65-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
65+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
66+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
6667
sigs.k8s.io/yaml v1.3.0 // indirect
6768
)
6869

0 commit comments

Comments
 (0)