Skip to content

Commit c88881f

Browse files
committed
gomod(deps): Bump packages to the latest version
Signed-off-by: Cezar Craciunoiu <[email protected]>
1 parent 84cad65 commit c88881f

File tree

6 files changed

+88
-59
lines changed

6 files changed

+88
-59
lines changed

go.mod

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,50 @@
11
module github.com/unikraft/governance
22

3-
go 1.22
3+
go 1.22.0
44

5-
toolchain go1.22.0
5+
toolchain go1.22.2
66

77
require (
88
github.com/MakeNowJust/heredoc v1.0.0
99
github.com/bmatcuk/doublestar v1.3.4
1010
github.com/go-git/go-git/v5 v5.12.0
11-
github.com/google/go-github/v32 v32.1.0
11+
github.com/google/go-github/v63 v63.0.0
1212
github.com/hairyhenderson/go-codeowners v0.4.0
1313
github.com/muesli/reflow v0.3.0
1414
github.com/rancher/wrangler v1.1.2
1515
github.com/sirupsen/logrus v1.9.3
16-
github.com/spf13/cobra v1.8.0
16+
github.com/spf13/cobra v1.8.1
1717
github.com/spf13/pflag v1.0.5
1818
github.com/waigani/diffparser v0.0.0-20190828052634-7391f219313d
19-
golang.org/x/oauth2 v0.19.0
19+
golang.org/x/oauth2 v0.22.0
2020
gopkg.in/yaml.v2 v2.4.0
21-
kraftkit.sh v0.8.5
21+
kraftkit.sh v0.9.1
2222
)
2323

2424
require (
2525
dario.cat/mergo v1.0.0 // indirect
2626
github.com/AlecAivazis/survey/v2 v2.3.7 // indirect
27-
github.com/Microsoft/go-winio v0.6.1 // indirect
27+
github.com/Microsoft/go-winio v0.6.2 // indirect
2828
github.com/ProtonMail/go-crypto v1.0.0 // indirect
2929
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
30-
github.com/briandowns/spinner v1.23.0 // indirect
31-
github.com/charmbracelet/lipgloss v0.10.0 // indirect
30+
github.com/briandowns/spinner v1.23.1 // indirect
31+
github.com/charmbracelet/lipgloss v0.12.1 // indirect
32+
github.com/charmbracelet/x/ansi v0.1.4 // indirect
3233
github.com/cli/go-gh v1.2.1 // indirect
3334
github.com/cli/safeexec v1.0.1 // indirect
3435
github.com/cloudflare/circl v1.3.7 // indirect
35-
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
36+
github.com/compose-spec/compose-go/v2 v2.1.4 // indirect
37+
github.com/cyphar/filepath-securejoin v0.3.1 // indirect
38+
github.com/distribution/reference v0.6.0 // indirect
39+
github.com/docker/cli v27.1.1+incompatible // indirect
40+
github.com/docker/docker-credential-helpers v0.8.1 // indirect
41+
github.com/docker/go-connections v0.5.0 // indirect
42+
github.com/docker/go-units v0.5.0 // indirect
3643
github.com/emirpasic/gods v1.18.1 // indirect
3744
github.com/fatih/color v1.16.0 // indirect
3845
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
3946
github.com/go-git/go-billy/v5 v5.5.0 // indirect
47+
github.com/go-viper/mapstructure/v2 v2.0.0 // indirect
4048
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
4149
github.com/google/go-querystring v1.1.0 // indirect
4250
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
@@ -47,20 +55,24 @@ require (
4755
github.com/mattn/go-colorable v0.1.13 // indirect
4856
github.com/mattn/go-isatty v0.0.20 // indirect
4957
github.com/mattn/go-runewidth v0.0.15 // indirect
58+
github.com/mattn/go-shellwords v1.0.12 // indirect
5059
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
60+
github.com/mitchellh/go-homedir v1.1.0 // indirect
5161
github.com/muesli/termenv v0.15.2 // indirect
62+
github.com/opencontainers/go-digest v1.0.0 // indirect
5263
github.com/pjbgf/sha1cd v0.3.0 // indirect
64+
github.com/pkg/errors v0.9.1 // indirect
5365
github.com/rivo/uniseg v0.4.7 // indirect
5466
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
5567
github.com/skeema/knownhosts v1.2.2 // indirect
5668
github.com/xanzy/ssh-agent v0.3.3 // indirect
57-
golang.org/x/crypto v0.22.0 // indirect
58-
golang.org/x/mod v0.16.0 // indirect
59-
golang.org/x/net v0.24.0 // indirect
60-
golang.org/x/sys v0.19.0 // indirect
61-
golang.org/x/term v0.19.0 // indirect
62-
golang.org/x/text v0.14.0 // indirect
63-
golang.org/x/tools v0.17.0 // indirect
69+
golang.org/x/crypto v0.25.0 // indirect
70+
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
71+
golang.org/x/net v0.27.0 // indirect
72+
golang.org/x/sync v0.7.0 // indirect
73+
golang.org/x/sys v0.22.0 // indirect
74+
golang.org/x/term v0.22.0 // indirect
75+
golang.org/x/text v0.16.0 // indirect
6476
gopkg.in/warnings.v0 v0.1.2 // indirect
6577
gopkg.in/yaml.v3 v3.0.1 // indirect
6678
)

0 commit comments

Comments
 (0)