Skip to content

Commit 95cc2d6

Browse files
chore: consolidate core dependencies upgrade (#2213)
* ci: bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore: root dependency updates Signed-off-by: Evan Baker <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Evan Baker <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2791885 commit 95cc2d6

File tree

7 files changed

+112
-136
lines changed

7 files changed

+112
-136
lines changed

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
language: [ 'go' ]
2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
- name: Initialize CodeQL
2929
uses: github/codeql-action/init@v2
3030
with:

.github/workflows/crdgen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: CRDs are Generated
1717
runs-on: ${{ matrix.os }}
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
2222
- uses: actions/setup-go@v4

.github/workflows/cyclonus-netpol-extended-nightly-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
]
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
- uses: actions/setup-go@v4
2828
with:

.github/workflows/cyclonus-netpol-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
]
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333

3434
- uses: actions/setup-go@v4
3535
with:

.github/workflows/golangci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/setup-go@v4
2121
with:
2222
go-version: ${{ matrix.go-version }}
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
2626
- name: golangci-lint

go.mod

Lines changed: 30 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/billgraziano/dpapi v0.4.0
1515
github.com/containernetworking/cni v1.1.2
1616
github.com/docker/libnetwork v0.8.0-dev.2.0.20210525090646-64b7a4574d14
17-
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
17+
github.com/evanphx/json-patch/v5 v5.7.0 // indirect
1818
github.com/go-logr/zapr v1.2.4 // indirect
1919
github.com/golang/mock v1.6.0
2020
github.com/golang/protobuf v1.5.3
@@ -33,23 +33,23 @@ require (
3333
github.com/prometheus/client_model v0.4.0
3434
github.com/spf13/cobra v1.7.0
3535
github.com/spf13/pflag v1.0.5
36-
github.com/spf13/viper v1.14.0
36+
github.com/spf13/viper v1.16.0
3737
github.com/stretchr/testify v1.8.4
3838
go.uber.org/zap v1.25.0
39-
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63
40-
golang.org/x/sys v0.11.0
41-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
42-
google.golang.org/grpc v1.54.0
39+
golang.org/x/exp v0.0.0-20230905200255-921286631fa9
40+
golang.org/x/sys v0.12.0
41+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230911183012-2d3300fd4832 // indirect
42+
google.golang.org/grpc v1.58.0
4343
google.golang.org/protobuf v1.31.0
4444
gopkg.in/natefinch/lumberjack.v2 v2.2.1
45-
k8s.io/api v0.28.0
46-
k8s.io/apiextensions-apiserver v0.28.0
47-
k8s.io/apimachinery v0.28.0
48-
k8s.io/client-go v0.28.0
45+
k8s.io/api v0.28.1
46+
k8s.io/apiextensions-apiserver v0.28.1
47+
k8s.io/apimachinery v0.28.1
48+
k8s.io/client-go v0.28.1
4949
k8s.io/klog v1.0.0
5050
k8s.io/klog/v2 v2.100.1
5151
k8s.io/utils v0.0.0-20230726121419-3b25d923346b
52-
sigs.k8s.io/controller-runtime v0.16.0
52+
sigs.k8s.io/controller-runtime v0.16.2
5353
)
5454

5555
require (
@@ -60,7 +60,7 @@ require (
6060
github.com/beorn7/perks v1.0.1 // indirect
6161
github.com/cespare/xxhash/v2 v2.2.0 // indirect
6262
github.com/containerd/cgroups v1.0.1 // indirect
63-
github.com/coreos/go-iptables v0.6.0
63+
github.com/coreos/go-iptables v0.7.0
6464
github.com/davecgh/go-spew v1.1.1 // indirect
6565
github.com/docker/docker v20.10.24+incompatible // indirect
6666
github.com/docker/go-connections v0.4.0 // indirect
@@ -83,59 +83,58 @@ require (
8383
github.com/josharian/intern v1.0.0 // indirect
8484
github.com/json-iterator/go v1.1.12 // indirect
8585
github.com/kylelemons/godebug v1.1.0 // indirect
86-
github.com/labstack/echo/v4 v4.10.0
86+
github.com/labstack/echo/v4 v4.11.1
8787
github.com/labstack/gommon v0.4.0 // indirect
88-
github.com/magiconair/properties v1.8.6 // indirect
88+
github.com/magiconair/properties v1.8.7 // indirect
8989
github.com/mailru/easyjson v0.7.7 // indirect
9090
github.com/mattn/go-colorable v0.1.13 // indirect
91-
github.com/mattn/go-isatty v0.0.16 // indirect
91+
github.com/mattn/go-isatty v0.0.19 // indirect
9292
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
9393
github.com/mitchellh/mapstructure v1.5.0 // indirect
9494
github.com/moby/spdystream v0.2.0 // indirect
9595
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
9696
github.com/modern-go/reflect2 v1.0.2 // indirect
9797
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
98-
github.com/pelletier/go-toml v1.9.5 // indirect
99-
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
98+
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
10099
github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4 // indirect
101100
github.com/pmezard/go-difflib v1.0.0 // indirect
102101
github.com/prometheus/common v0.44.0 // indirect
103102
github.com/prometheus/procfs v0.11.1 // indirect
104103
github.com/sirupsen/logrus v1.9.0
105-
github.com/spf13/afero v1.9.2 // indirect
106-
github.com/spf13/cast v1.5.0 // indirect
104+
github.com/spf13/afero v1.9.5 // indirect
105+
github.com/spf13/cast v1.5.1 // indirect
107106
github.com/spf13/jwalterweatherman v1.1.0 // indirect
108-
github.com/subosito/gotenv v1.4.1 // indirect
107+
github.com/subosito/gotenv v1.6.0 // indirect
109108
github.com/valyala/bytebufferpool v1.0.0 // indirect
110109
github.com/valyala/fasttemplate v1.2.2 // indirect
111110
github.com/vishvananda/netlink v1.2.1-beta.2
112-
github.com/vishvananda/netns v0.0.0-20211101163701-50045581ed74
113-
go.opencensus.io v0.23.0 // indirect
111+
github.com/vishvananda/netns v0.0.4
112+
go.opencensus.io v0.24.0 // indirect
114113
go.uber.org/multierr v1.11.0 // indirect
115-
golang.org/x/crypto v0.12.0
116-
golang.org/x/net v0.14.0 // indirect
117-
golang.org/x/oauth2 v0.11.0 // indirect
118-
golang.org/x/term v0.11.0 // indirect
119-
golang.org/x/text v0.12.0 // indirect
114+
golang.org/x/crypto v0.13.0
115+
golang.org/x/net v0.15.0 // indirect
116+
golang.org/x/oauth2 v0.12.0 // indirect
117+
golang.org/x/term v0.12.0 // indirect
118+
golang.org/x/text v0.13.0 // indirect
120119
golang.org/x/time v0.3.0 // indirect
121120
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
122121
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
123-
google.golang.org/appengine v1.6.7 // indirect
122+
google.golang.org/appengine v1.6.8 // indirect
124123
gopkg.in/fsnotify.v1 v1.4.7 // indirect
125124
gopkg.in/inf.v0 v0.9.1 // indirect
126125
gopkg.in/ini.v1 v1.67.0 // indirect
127126
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
128127
gopkg.in/yaml.v2 v2.4.0 // indirect
129128
gopkg.in/yaml.v3 v3.0.1 // indirect
130-
k8s.io/component-base v0.28.0 // indirect
131-
k8s.io/kube-openapi v0.0.0-20230816210353-14e408962443 // indirect
129+
k8s.io/component-base v0.28.1 // indirect
130+
k8s.io/kube-openapi v0.0.0-20230905202853-d090da108d2f // indirect
132131
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
133132
sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect
134133
)
135134

136135
require sigs.k8s.io/yaml v1.3.0
137136

138-
require github.com/emicklei/go-restful/v3 v3.9.0 // indirect
137+
require github.com/emicklei/go-restful/v3 v3.11.0 // indirect
139138

140139
replace (
141140
github.com/Microsoft/go-winio => github.com/microsoft/go-winio v0.4.17

0 commit comments

Comments
 (0)