Skip to content

Commit f60108e

Browse files
committed
Updated to SDK v0.8.0
Signed-off-by: Eddie Knight <knight@linux.com>
1 parent e8bfc70 commit f60108e

File tree

2 files changed

+115
-127
lines changed

2 files changed

+115
-127
lines changed

go.mod

Lines changed: 31 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,61 @@
11
module github.com/privateerproj/privateer
22

3-
go 1.23
3+
go 1.23.4
44

55
require (
6-
github.com/go-git/go-git/v5 v5.13.2
6+
github.com/go-git/go-git/v5 v5.14.0
77
github.com/hashicorp/go-hclog v1.6.3
88
github.com/hashicorp/go-plugin v1.6.3
9-
github.com/privateerproj/privateer-sdk v0.6.1
10-
github.com/revanite-io/sci/pkg/layer2 v0.0.0-20250226143903-507084ca3f87
9+
github.com/privateerproj/privateer-sdk v0.8.0
10+
github.com/revanite-io/sci v0.1.3
1111
github.com/spf13/cobra v1.9.1
1212
github.com/spf13/viper v1.19.0
1313
)
1414

1515
require (
16-
dario.cat/mergo v1.0.0 // indirect
17-
github.com/Microsoft/go-winio v0.6.1 // indirect
18-
github.com/ProtonMail/go-crypto v1.1.5 // indirect
19-
github.com/cloudflare/circl v1.3.7 // indirect
20-
github.com/cyphar/filepath-securejoin v0.3.6 // indirect
16+
dario.cat/mergo v1.0.1 // indirect
17+
github.com/Microsoft/go-winio v0.6.2 // indirect
18+
github.com/ProtonMail/go-crypto v1.1.6 // indirect
19+
github.com/cloudflare/circl v1.6.0 // indirect
20+
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
2121
github.com/emirpasic/gods v1.18.1 // indirect
22-
github.com/fatih/color v1.14.1 // indirect
23-
github.com/fsnotify/fsnotify v1.7.0 // indirect
22+
github.com/fatih/color v1.18.0 // indirect
23+
github.com/fsnotify/fsnotify v1.8.0 // indirect
2424
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
2525
github.com/go-git/go-billy/v5 v5.6.2 // indirect
26-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
27-
github.com/golang/protobuf v1.5.3 // indirect
26+
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
27+
github.com/golang/protobuf v1.5.4 // indirect
2828
github.com/hashicorp/hcl v1.0.0 // indirect
29-
github.com/hashicorp/yamux v0.1.1 // indirect
29+
github.com/hashicorp/yamux v0.1.2 // indirect
3030
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3131
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
3232
github.com/kevinburke/ssh_config v1.2.0 // indirect
33-
github.com/magiconair/properties v1.8.7 // indirect
34-
github.com/mattn/go-colorable v0.1.13 // indirect
33+
github.com/magiconair/properties v1.8.9 // indirect
34+
github.com/mattn/go-colorable v0.1.14 // indirect
3535
github.com/mattn/go-isatty v0.0.20 // indirect
3636
github.com/mitchellh/mapstructure v1.5.0 // indirect
37-
github.com/oklog/run v1.0.0 // indirect
38-
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
37+
github.com/oklog/run v1.1.0 // indirect
38+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
3939
github.com/pjbgf/sha1cd v0.3.2 // indirect
40-
github.com/sagikazarmark/locafero v0.4.0 // indirect
40+
github.com/sagikazarmark/locafero v0.7.0 // indirect
4141
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
4242
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
43-
github.com/skeema/knownhosts v1.3.0 // indirect
43+
github.com/skeema/knownhosts v1.3.1 // indirect
4444
github.com/sourcegraph/conc v0.3.0 // indirect
45-
github.com/spf13/afero v1.11.0 // indirect
46-
github.com/spf13/cast v1.6.0 // indirect
45+
github.com/spf13/afero v1.12.0 // indirect
46+
github.com/spf13/cast v1.7.1 // indirect
4747
github.com/spf13/pflag v1.0.6 // indirect
4848
github.com/subosito/gotenv v1.6.0 // indirect
4949
github.com/xanzy/ssh-agent v0.3.3 // indirect
50-
go.uber.org/atomic v1.9.0 // indirect
51-
go.uber.org/multierr v1.9.0 // indirect
52-
golang.org/x/crypto v0.32.0 // indirect
53-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
54-
golang.org/x/mod v0.19.0 // indirect
55-
golang.org/x/net v0.34.0 // indirect
56-
golang.org/x/sync v0.10.0 // indirect
57-
golang.org/x/sys v0.29.0 // indirect
58-
golang.org/x/text v0.21.0 // indirect
59-
golang.org/x/tools v0.23.0 // indirect
60-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240314234333-6e1732d8331c // indirect
61-
google.golang.org/grpc v1.62.1 // indirect
62-
google.golang.org/protobuf v1.36.1 // indirect
50+
go.uber.org/multierr v1.11.0 // indirect
51+
golang.org/x/crypto v0.35.0 // indirect
52+
golang.org/x/exp v0.0.0-20250228200357-dead58393ab7 // indirect
53+
golang.org/x/net v0.35.0 // indirect
54+
golang.org/x/sys v0.30.0 // indirect
55+
golang.org/x/text v0.22.0 // indirect
56+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250227231956-55c901821b1e // indirect
57+
google.golang.org/grpc v1.70.0 // indirect
58+
google.golang.org/protobuf v1.36.5 // indirect
6359
gopkg.in/ini.v1 v1.67.0 // indirect
6460
gopkg.in/warnings.v0 v0.1.2 // indirect
6561
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)