Skip to content

Commit 14c3d0f

Browse files
authored
Update Go packages (#37)
Signed-off-by: Dale Haiducek <[email protected]>
1 parent 3b33cb9 commit 14c3d0f

File tree

5 files changed

+552
-116
lines changed

5 files changed

+552
-116
lines changed

.github/workflows/linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
go:
17-
- '1.16'
17+
- '1.17'
1818
name: Linting
1919
steps:
2020
- name: Checkout the repo

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
go:
17-
- '1.16'
17+
- '1.17'
1818
name: Unit Tests
1919
steps:
2020
- name: Checkout the repo

go.mod

Lines changed: 43 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,50 @@
11
module github.com/stolostron/policy-generator-plugin
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/spf13/pflag v1.0.5
77
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
8-
k8s.io/apimachinery v0.22.1
9-
sigs.k8s.io/kustomize/api v0.9.0
10-
sigs.k8s.io/kustomize/kyaml v0.11.1
8+
k8s.io/apimachinery v0.23.3
9+
sigs.k8s.io/kustomize/api v0.11.2
10+
sigs.k8s.io/kustomize/kyaml v0.13.3
11+
)
12+
13+
require (
14+
github.com/PuerkitoBio/purell v1.1.1 // indirect
15+
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
16+
github.com/davecgh/go-spew v1.1.1 // indirect
17+
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
18+
github.com/go-errors/errors v1.4.2 // indirect
19+
github.com/go-logr/logr v1.2.2 // indirect
20+
github.com/go-openapi/jsonpointer v0.19.5 // indirect
21+
github.com/go-openapi/jsonreference v0.19.6 // indirect
22+
github.com/go-openapi/swag v0.21.1 // indirect
23+
github.com/gogo/protobuf v1.3.2 // indirect
24+
github.com/google/go-cmp v0.5.7 // indirect
25+
github.com/google/gofuzz v1.2.0 // indirect
26+
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
27+
github.com/imdario/mergo v0.3.12 // indirect
28+
github.com/josharian/intern v1.0.0 // indirect
29+
github.com/json-iterator/go v1.1.12 // indirect
30+
github.com/mailru/easyjson v0.7.7 // indirect
31+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
32+
github.com/modern-go/reflect2 v1.0.2 // indirect
33+
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
34+
github.com/pkg/errors v0.9.1 // indirect
35+
github.com/pmezard/go-difflib v1.0.0 // indirect
36+
github.com/stretchr/testify v1.7.0 // indirect
37+
github.com/xlab/treeprint v1.1.0 // indirect
38+
go.starlark.net v0.0.0-20220213143740-c55a923347b1 // indirect
39+
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
40+
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
41+
golang.org/x/text v0.3.7 // indirect
42+
gopkg.in/inf.v0 v0.9.1 // indirect
43+
gopkg.in/yaml.v2 v2.4.0 // indirect
44+
k8s.io/klog/v2 v2.40.1 // indirect
45+
k8s.io/kube-openapi v0.0.0-20220124234850-424119656bbf // indirect
46+
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
47+
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
48+
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
49+
sigs.k8s.io/yaml v1.3.0 // indirect
1150
)

0 commit comments

Comments
 (0)