Skip to content

Commit bef41c6

Browse files
author
Krzysztof Wilczyński
committed
Update old dependencies and refresh Go version
Signed-off-by: Krzysztof Wilczyński <[email protected]>
1 parent e3223f5 commit bef41c6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+439
-3926
lines changed

.github/workflows/test.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: test
44
on: ["push", "pull_request"]
55

66
env:
7-
GO_VERSION: "1.18"
7+
GO_VERSION: "1.20"
88
LINUX_ARCHES: "amd64 386 arm arm64 s390x mips64le ppc64le"
99

1010
jobs:
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: setup go
16-
uses: actions/setup-go@v1
16+
uses: actions/setup-go@v5
1717
with:
1818
go-version: ${{ env.GO_VERSION }}
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020

2121
- name: Build on all supported architectures
2222
run: |
@@ -31,10 +31,10 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: setup go
34-
uses: actions/setup-go@v1
34+
uses: actions/setup-go@v5
3535
with:
3636
go-version: ${{ env.GO_VERSION }}
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v4
3838

3939
- name: Install test binaries
4040
env:

go.mod

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module github.com/cri-o/ocicni
22

3-
go 1.17
3+
go 1.20
44

55
require (
66
github.com/containernetworking/cni v1.1.2
77
github.com/containernetworking/plugins v1.4.0
88
github.com/fsnotify/fsnotify v1.7.0
9-
github.com/onsi/ginkgo/v2 v2.13.2
10-
github.com/onsi/gomega v1.30.0
9+
github.com/onsi/ginkgo/v2 v2.15.0
10+
github.com/onsi/gomega v1.31.1
1111
github.com/sirupsen/logrus v1.9.3
1212
github.com/vishvananda/netlink v1.2.1-beta.2
1313
)
@@ -18,9 +18,9 @@ require (
1818
github.com/google/go-cmp v0.6.0 // indirect
1919
github.com/google/pprof v0.0.0-20230323073829-e72429f035bd // indirect
2020
github.com/vishvananda/netns v0.0.4 // indirect
21-
golang.org/x/net v0.17.0 // indirect
22-
golang.org/x/sys v0.15.0 // indirect
23-
golang.org/x/text v0.13.0 // indirect
24-
golang.org/x/tools v0.14.0 // indirect
21+
golang.org/x/net v0.19.0 // indirect
22+
golang.org/x/sys v0.16.0 // indirect
23+
golang.org/x/text v0.14.0 // indirect
24+
golang.org/x/tools v0.16.1 // indirect
2525
gopkg.in/yaml.v3 v3.0.1 // indirect
2626
)

go.sum

+12-2,560
Large diffs are not rendered by default.

vendor/github.com/onsi/ginkgo/v2/CHANGELOG.md

+43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/onsi/ginkgo/v2/ginkgo/internal/profiles_and_reports.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/onsi/ginkgo/v2/ginkgo/outline/ginkgo.go

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/onsi/ginkgo/v2/ginkgo/outline/import.go

+1-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/onsi/ginkgo/v2/ginkgo_t_dsl.go

+98-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/onsi/ginkgo/v2/internal/output_interceptor_wasm.go

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/onsi/ginkgo/v2/internal/progress_report_wasm.go

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/onsi/ginkgo/v2/internal/spec_context.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/onsi/ginkgo/v2/internal/suite.go

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)