Skip to content

Commit 1bf94b5

Browse files
Merge pull request #106 from mittwald/nisha-update-dependencies
updated the golang version and dependencies
2 parents 9faff4a + fda83c2 commit 1bf94b5

File tree

4 files changed

+165
-41
lines changed

4 files changed

+165
-41
lines changed

.github/workflows/workflow.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ jobs:
1919
name: Test
2020
runs-on: ubuntu-latest
2121
steps:
22-
- name: Set up Go 1.16
22+
- name: Set up Go 1.23
2323
uses: actions/setup-go@v2
2424
with:
25-
go-version: 1.16
25+
go-version: 1.23
2626
id: go
2727

2828
- name: Check out code into the Go module directory
2929
uses: actions/checkout@v2
3030

3131
- name: Install golangci-lint
32-
run: curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.33.0
32+
run: curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.63.4
3333

3434
- name: Run golangci-lint
3535
run: $(go env GOPATH)/bin/golangci-lint run -v --timeout 5m
@@ -59,10 +59,10 @@ jobs:
5959
name: Build Image
6060
runs-on: ubuntu-latest
6161
steps:
62-
- name: Set up Go 1.16
62+
- name: Set up Go 1.23
6363
uses: actions/setup-go@v2
6464
with:
65-
go-version: 1.16
65+
go-version: 1.23
6666
id: go
6767

6868
- name: Check out code into the Go module directory
@@ -80,10 +80,10 @@ jobs:
8080
needs: ['test', 'build']
8181
if: github.ref == 'refs/heads/master'
8282
steps:
83-
- name: Set up Go 1.16
83+
- name: Set up Go 1.23
8484
uses: actions/setup-go@v2
8585
with:
86-
go-version: 1.16
86+
go-version: 1.23
8787
id: go
8888

8989
- name: Registry Login
@@ -107,10 +107,10 @@ jobs:
107107
needs: ['test', 'build']
108108
if: startsWith(github.ref, 'refs/tags/v')
109109
steps:
110-
- name: Set up Go 1.16
110+
- name: Set up Go 1.23
111111
uses: actions/setup-go@v2
112112
with:
113-
go-version: 1.16
113+
go-version: 1.23
114114
id: go
115115

116116
- name: Registry Login

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.16 as builder
2+
FROM golang:1.23.1 as builder
33

44
WORKDIR /workdir
55
# ENV GOPATH=/go

go.mod

Lines changed: 76 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,94 @@
11
module github.com/mittwald/kubernetes-secret-generator
22

3-
go 1.16
3+
go 1.23
44

55
require (
66
github.com/go-logr/logr v0.1.0
7-
github.com/google/uuid v1.1.1
7+
github.com/google/uuid v1.3.0
88
github.com/imdario/mergo v0.3.8
99
github.com/operator-framework/operator-sdk v0.16.0
10-
github.com/pkg/errors v0.8.1
10+
github.com/pkg/errors v0.9.1
1111
github.com/spf13/pflag v1.0.5
1212
github.com/spf13/viper v1.4.0
13-
github.com/stretchr/testify v1.4.0
14-
golang.org/x/crypto v0.0.0-20191028145041-f83a4685e152
13+
github.com/stretchr/testify v1.9.0
14+
golang.org/x/crypto v0.24.0
1515
k8s.io/api v0.0.0
1616
k8s.io/apimachinery v0.0.0
1717
k8s.io/client-go v12.0.0+incompatible
1818
sigs.k8s.io/controller-runtime v0.4.0
1919
)
2020

21+
require (
22+
cloud.google.com/go v0.38.0 // indirect
23+
github.com/Azure/go-autorest/autorest v0.9.0 // indirect
24+
github.com/Azure/go-autorest/autorest/adal v0.5.0 // indirect
25+
github.com/Azure/go-autorest/autorest/date v0.1.0 // indirect
26+
github.com/Azure/go-autorest/logger v0.1.0 // indirect
27+
github.com/Azure/go-autorest/tracing v0.5.0 // indirect
28+
github.com/PuerkitoBio/purell v1.1.1 // indirect
29+
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
30+
github.com/beorn7/perks v1.0.1 // indirect
31+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
32+
github.com/coreos/prometheus-operator v0.34.0 // indirect
33+
github.com/davecgh/go-spew v1.1.1 // indirect
34+
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
35+
github.com/emicklei/go-restful v2.16.0+incompatible // indirect
36+
github.com/evanphx/json-patch v4.5.0+incompatible // indirect
37+
github.com/fsnotify/fsnotify v1.4.7 // indirect
38+
github.com/go-logr/zapr v0.1.1 // indirect
39+
github.com/go-openapi/jsonpointer v0.19.3 // indirect
40+
github.com/go-openapi/jsonreference v0.19.3 // indirect
41+
github.com/go-openapi/spec v0.19.4 // indirect
42+
github.com/go-openapi/swag v0.19.5 // indirect
43+
github.com/gogo/protobuf v1.3.2 // indirect
44+
github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 // indirect
45+
github.com/golang/protobuf v1.5.0 // indirect
46+
github.com/google/go-cmp v0.6.0 // indirect
47+
github.com/google/gofuzz v1.0.0 // indirect
48+
github.com/googleapis/gnostic v0.3.1 // indirect
49+
github.com/gophercloud/gophercloud v0.2.0 // indirect
50+
github.com/hashicorp/golang-lru v0.5.3 // indirect
51+
github.com/hashicorp/hcl v1.0.0 // indirect
52+
github.com/json-iterator/go v1.1.12 // indirect
53+
github.com/klauspost/compress v1.17.9 // indirect
54+
github.com/magiconair/properties v1.8.1 // indirect
55+
github.com/mailru/easyjson v0.7.0 // indirect
56+
github.com/mitchellh/mapstructure v1.1.2 // indirect
57+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
58+
github.com/modern-go/reflect2 v1.0.2 // indirect
59+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
60+
github.com/pelletier/go-toml v1.2.0 // indirect
61+
github.com/pmezard/go-difflib v1.0.0 // indirect
62+
github.com/prometheus/client_golang v1.20.3 // indirect
63+
github.com/prometheus/client_model v0.6.1 // indirect
64+
github.com/prometheus/common v0.55.0 // indirect
65+
github.com/prometheus/procfs v0.15.1 // indirect
66+
github.com/spf13/afero v1.2.2 // indirect
67+
github.com/spf13/cast v1.3.0 // indirect
68+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
69+
go.uber.org/atomic v1.4.0 // indirect
70+
go.uber.org/multierr v1.1.0 // indirect
71+
go.uber.org/zap v1.10.0 // indirect
72+
golang.org/x/net v0.26.0 // indirect
73+
golang.org/x/oauth2 v0.21.0 // indirect
74+
golang.org/x/sys v0.22.0 // indirect
75+
golang.org/x/term v0.21.0 // indirect
76+
golang.org/x/text v0.18.0 // indirect
77+
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
78+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
79+
gomodules.xyz/jsonpatch/v2 v2.0.1 // indirect
80+
google.golang.org/protobuf v1.34.2 // indirect
81+
gopkg.in/fsnotify.v1 v1.4.7 // indirect
82+
gopkg.in/inf.v0 v0.9.1 // indirect
83+
gopkg.in/yaml.v2 v2.4.0 // indirect
84+
gopkg.in/yaml.v3 v3.0.1 // indirect
85+
k8s.io/klog v1.0.0 // indirect
86+
k8s.io/kube-openapi v0.0.0-20190918143330-0270cf2f1c1d // indirect
87+
k8s.io/kube-state-metrics v1.7.2 // indirect
88+
k8s.io/utils v0.0.0-20191010214722-8d271d903fe4 // indirect
89+
sigs.k8s.io/yaml v1.1.0 // indirect
90+
)
91+
2192
// Pinned to kubernetes-1.16.2
2293
replace (
2394
k8s.io/api => k8s.io/api v0.0.0-20191016110408-35e52d86657a

0 commit comments

Comments
 (0)