File tree Expand file tree Collapse file tree 12 files changed +11
-11
lines changed
Expand file tree Collapse file tree 12 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 11package cmd
22
33import (
4+ "log/slog"
45 "os"
56 "path"
67
78 "github.com/gatecheckdev/gatecheck/pkg/gatecheck"
8- "github.com/sagikazarmark/slog-shim"
99 "github.com/spf13/cobra"
1010)
1111
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ require (
88 github.com/lmittmann/tint v1.0.4
99 github.com/olekukonko/tablewriter v0.0.5
1010 github.com/pelletier/go-toml/v2 v2.2.2
11- github.com/sagikazarmark/slog-shim v0.1.0
1211 github.com/spf13/cobra v1.8.0
1312 github.com/spf13/viper v1.18.2
1413 gopkg.in/yaml.v3 v3.0.1
@@ -24,6 +23,7 @@ require (
2423 github.com/rivo/uniseg v0.4.7 // indirect
2524 github.com/rogpeppe/go-internal v1.12.0 // indirect
2625 github.com/sagikazarmark/locafero v0.4.0 // indirect
26+ github.com/sagikazarmark/slog-shim v0.1.0 // indirect
2727 github.com/sourcegraph/conc v0.3.0 // indirect
2828 github.com/spf13/afero v1.11.0 // indirect
2929 github.com/spf13/cast v1.6.0 // indirect
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 44 "io"
55 "net/http"
66
7- "github.com/gatecheckdev/gatecheck/pkg/epss/v1 "
8- "github.com/gatecheckdev/gatecheck/pkg/kev/v1 "
7+ "github.com/gatecheckdev/gatecheck/pkg/epss"
8+ "github.com/gatecheckdev/gatecheck/pkg/kev"
99)
1010
1111type fetchOptions struct {
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ import (
1111 "strings"
1212
1313 "github.com/gatecheckdev/gatecheck/pkg/archive"
14- "github.com/gatecheckdev/gatecheck/pkg/artifacts/v1 "
15- "github.com/gatecheckdev/gatecheck/pkg/epss/v1 "
14+ "github.com/gatecheckdev/gatecheck/pkg/artifacts"
15+ "github.com/gatecheckdev/gatecheck/pkg/epss"
1616 "github.com/gatecheckdev/gatecheck/pkg/format"
1717 "github.com/olekukonko/tablewriter"
1818)
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import (
1111 "strings"
1212
1313 "github.com/gatecheckdev/gatecheck/pkg/archive"
14- "github.com/gatecheckdev/gatecheck/pkg/artifacts/v1 "
15- "github.com/gatecheckdev/gatecheck/pkg/epss/v1 "
16- "github.com/gatecheckdev/gatecheck/pkg/kev/v1 "
14+ "github.com/gatecheckdev/gatecheck/pkg/artifacts"
15+ "github.com/gatecheckdev/gatecheck/pkg/epss"
16+ "github.com/gatecheckdev/gatecheck/pkg/kev"
1717)
1818
1919var ErrValidationFailure = errors .New ("Validation Failure" )
You can’t perform that action at this time.
0 commit comments