Skip to content

Commit 005572d

Browse files
Bump the security group with 7 updates (#57)
* Bump the security group with 7 updates Bumps the security group with 7 updates: | Package | From | To | | --- | --- | --- | | [github.com/gofiber/fiber/v2](https://github.com/gofiber/fiber) | `2.52.1` | `2.52.4` | | [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.8.4` | `1.9.0` | | [github.com/vmware-tanzu/velero](https://github.com/vmware-tanzu/velero) | `1.13.0` | `1.14.0` | | [k8s.io/api](https://github.com/kubernetes/api) | `0.25.6` | `0.29.0` | | [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.25.6` | `0.29.0` | | [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.25.6` | `0.29.0` | | [k8s.io/utils](https://github.com/kubernetes/utils) | `0.0.0-20220728103510-ee6ede2d64ed` | `0.0.0-20230726121419-3b25d923346b` | Updates `github.com/gofiber/fiber/v2` from 2.52.1 to 2.52.4 - [Release notes](https://github.com/gofiber/fiber/releases) - [Commits](gofiber/fiber@v2.52.1...v2.52.4) Updates `github.com/stretchr/testify` from 1.8.4 to 1.9.0 - [Release notes](https://github.com/stretchr/testify/releases) - [Commits](stretchr/testify@v1.8.4...v1.9.0) Updates `github.com/vmware-tanzu/velero` from 1.13.0 to 1.14.0 - [Release notes](https://github.com/vmware-tanzu/velero/releases) - [Changelog](https://github.com/vmware-tanzu/velero/blob/main/CHANGELOG.md) - [Commits](vmware-tanzu/velero@v1.13.0...v1.14.0) Updates `k8s.io/api` from 0.25.6 to 0.29.0 - [Commits](kubernetes/api@v0.25.6...v0.29.0) Updates `k8s.io/apimachinery` from 0.25.6 to 0.29.0 - [Commits](kubernetes/apimachinery@v0.25.6...v0.29.0) Updates `k8s.io/client-go` from 0.25.6 to 0.29.0 - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md) - [Commits](kubernetes/client-go@v0.25.6...v0.29.0) Updates `k8s.io/utils` from 0.0.0-20220728103510-ee6ede2d64ed to 0.0.0-20230726121419-3b25d923346b - [Commits](https://github.com/kubernetes/utils/commits) --- updated-dependencies: - dependency-name: github.com/gofiber/fiber/v2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: security - dependency-name: github.com/stretchr/testify dependency-type: direct:production update-type: version-update:semver-minor dependency-group: security - dependency-name: github.com/vmware-tanzu/velero dependency-type: direct:production update-type: version-update:semver-minor dependency-group: security - dependency-name: k8s.io/api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: security - dependency-name: k8s.io/apimachinery dependency-type: direct:production update-type: version-update:semver-minor dependency-group: security - dependency-name: k8s.io/client-go dependency-type: direct:production update-type: version-update:semver-minor dependency-group: security - dependency-name: k8s.io/utils dependency-type: direct:production update-type: version-update:semver-patch dependency-group: security ... Signed-off-by: dependabot[bot] <[email protected]> * go mod tidy * fix type --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Salah Al Saleh <[email protected]>
1 parent 638f51f commit 005572d

File tree

5 files changed

+139
-283
lines changed

5 files changed

+139
-283
lines changed

.github/workflows/daily-scan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- uses: actions/setup-go@v5
3333
with:
34-
go-version: "1.21"
34+
go-version: "1.22"
3535

3636
- name: Checkout
3737
uses: actions/checkout@v4

.github/workflows/unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup Go
1414
uses: actions/setup-go@v5
1515
with:
16-
go-version: 1.21
16+
go-version: 1.22
1717
- name: Run unit tests
1818
run: |
1919
make test

go.mod

Lines changed: 33 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,43 @@
11
module github.com/replicatedhq/local-volume-provider
22

3-
go 1.21
4-
5-
toolchain go1.21.7
3+
go 1.22.4
64

75
require (
8-
github.com/gofiber/fiber/v2 v2.52.1
6+
github.com/gofiber/fiber/v2 v2.52.4
97
github.com/pkg/errors v0.9.1
108
github.com/sirupsen/logrus v1.9.3
119
github.com/spf13/pflag v1.0.5
12-
github.com/stretchr/testify v1.8.4
13-
github.com/vmware-tanzu/velero v1.13.0
14-
k8s.io/api v0.25.6
15-
k8s.io/apimachinery v0.25.6
16-
k8s.io/client-go v0.25.6
17-
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed
10+
github.com/stretchr/testify v1.9.0
11+
github.com/vmware-tanzu/velero v1.14.0
12+
k8s.io/api v0.29.0
13+
k8s.io/apimachinery v0.29.0
14+
k8s.io/client-go v0.29.0
15+
k8s.io/utils v0.0.0-20230726121419-3b25d923346b
1816
)
1917

2018
require (
2119
github.com/andybalholm/brotli v1.0.5 // indirect
2220
github.com/davecgh/go-spew v1.1.1 // indirect
23-
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
21+
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2422
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
25-
github.com/fatih/color v1.15.0 // indirect
26-
github.com/go-logr/logr v1.2.4 // indirect
27-
github.com/go-openapi/jsonpointer v0.19.5 // indirect
28-
github.com/go-openapi/jsonreference v0.20.0 // indirect
29-
github.com/go-openapi/swag v0.21.1 // indirect
23+
github.com/fatih/color v1.16.0 // indirect
24+
github.com/go-logr/logr v1.4.1 // indirect
25+
github.com/go-openapi/jsonpointer v0.19.6 // indirect
26+
github.com/go-openapi/jsonreference v0.20.2 // indirect
27+
github.com/go-openapi/swag v0.22.3 // indirect
3028
github.com/gobwas/glob v0.2.3 // indirect
3129
github.com/gogo/protobuf v1.3.2 // indirect
32-
github.com/golang/protobuf v1.5.3 // indirect
33-
github.com/google/gnostic v0.6.9 // indirect
30+
github.com/golang/protobuf v1.5.4 // indirect
31+
github.com/google/gnostic-models v0.6.8 // indirect
3432
github.com/google/gofuzz v1.2.0 // indirect
35-
github.com/google/uuid v1.5.0 // indirect
33+
github.com/google/uuid v1.6.0 // indirect
3634
github.com/hashicorp/go-hclog v0.14.1 // indirect
37-
github.com/hashicorp/go-plugin v1.4.3 // indirect
38-
github.com/hashicorp/yamux v0.0.0-20190923154419-df201c70410d // indirect
39-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
35+
github.com/hashicorp/go-plugin v1.6.0 // indirect
36+
github.com/hashicorp/yamux v0.1.1 // indirect
37+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4038
github.com/josharian/intern v1.0.0 // indirect
4139
github.com/json-iterator/go v1.1.12 // indirect
42-
github.com/klauspost/compress v1.17.0 // indirect
40+
github.com/klauspost/compress v1.17.8 // indirect
4341
github.com/mailru/easyjson v0.7.7 // indirect
4442
github.com/mattn/go-colorable v0.1.13 // indirect
4543
github.com/mattn/go-isatty v0.0.20 // indirect
@@ -51,28 +49,27 @@ require (
5149
github.com/oklog/run v1.0.0 // indirect
5250
github.com/pmezard/go-difflib v1.0.0 // indirect
5351
github.com/rivo/uniseg v0.2.0 // indirect
54-
github.com/spf13/cobra v1.4.0 // indirect
52+
github.com/spf13/cobra v1.7.0 // indirect
5553
github.com/valyala/bytebufferpool v1.0.0 // indirect
5654
github.com/valyala/fasthttp v1.51.0 // indirect
5755
github.com/valyala/tcplisten v1.0.0 // indirect
58-
golang.org/x/net v0.23.0 // indirect
59-
golang.org/x/oauth2 v0.13.0 // indirect
60-
golang.org/x/sys v0.18.0 // indirect
61-
golang.org/x/term v0.18.0 // indirect
56+
golang.org/x/net v0.24.0 // indirect
57+
golang.org/x/oauth2 v0.19.0 // indirect
58+
golang.org/x/sys v0.19.0 // indirect
59+
golang.org/x/term v0.19.0 // indirect
6260
golang.org/x/text v0.14.0 // indirect
63-
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
64-
google.golang.org/appengine v1.6.7 // indirect
65-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 // indirect
66-
google.golang.org/grpc v1.58.3 // indirect
61+
golang.org/x/time v0.5.0 // indirect
62+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda // indirect
63+
google.golang.org/grpc v1.63.2 // indirect
6764
google.golang.org/protobuf v1.33.0 // indirect
6865
gopkg.in/inf.v0 v0.9.1 // indirect
6966
gopkg.in/yaml.v2 v2.4.0 // indirect
7067
gopkg.in/yaml.v3 v3.0.1 // indirect
71-
k8s.io/klog/v2 v2.70.1 // indirect
72-
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
68+
k8s.io/klog/v2 v2.110.1 // indirect
69+
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 // indirect
7370
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
74-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
75-
sigs.k8s.io/yaml v1.3.0 // indirect
71+
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
72+
sigs.k8s.io/yaml v1.4.0 // indirect
7673
)
7774

7875
replace github.com/replicatedhq/local-volume-provider/pkg/plugin => ./pkg/plugin

0 commit comments

Comments
 (0)