Skip to content

Commit

Permalink
🎉 v11 🎉
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
  • Loading branch information
arlimus committed Apr 17, 2024
1 parent 8327b62 commit 8e03953
Show file tree
Hide file tree
Showing 130 changed files with 532 additions and 481 deletions.
6 changes: 3 additions & 3 deletions apps/cnspec/cmd/backgroundjob/checkin.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"net/http"

"github.com/pkg/errors"
"go.mondoo.com/cnquery/v10"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/sysinfo"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream"
"go.mondoo.com/cnquery/v11"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/sysinfo"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream"
"go.mondoo.com/ranger-rpc"
"go.mondoo.com/ranger-rpc/plugins/scope"
)
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/backgroundjob/serve_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"time"

"github.com/rs/zerolog/log"
"go.mondoo.com/cnquery/v10/logger/eventlog"
"go.mondoo.com/cnquery/v11/logger/eventlog"
"golang.org/x/sys/windows/svc"
"golang.org/x/sys/windows/svc/debug"
)
Expand Down
10 changes: 5 additions & 5 deletions apps/cnspec/cmd/bundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import (
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"go.mondoo.com/cnquery/v10/cli/config"
"go.mondoo.com/cnquery/v10/providers"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream"
"go.mondoo.com/cnspec/v10/internal/bundle"
"go.mondoo.com/cnspec/v10/policy"
"go.mondoo.com/cnquery/v11/cli/config"

Check failure on line 13 in apps/cnspec/cmd/bundle.go

View workflow job for this annotation

GitHub Actions / go-test

missing go.sum entry for module providing package go.mondoo.com/cnquery/v11/cli/config (imported by go.mondoo.com/cnspec/v11/apps/cnspec/cmd); to add:
"go.mondoo.com/cnquery/v11/providers"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream"
"go.mondoo.com/cnspec/v11/internal/bundle"
"go.mondoo.com/cnspec/v11/policy"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package config
import (
"github.com/cockroachdb/errors"
"github.com/spf13/viper"
"go.mondoo.com/cnquery/v10/cli/config"
"go.mondoo.com/cnquery/v11/cli/config"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package cmd

import (
cnquery_app "go.mondoo.com/cnquery/v10/apps/cnquery/cmd"
cnquery_app "go.mondoo.com/cnquery/v11/apps/cnquery/cmd"

Check failure on line 7 in apps/cnspec/cmd/login.go

View workflow job for this annotation

GitHub Actions / go-test

missing go.sum entry for module providing package go.mondoo.com/cnquery/v11/apps/cnquery/cmd (imported by go.mondoo.com/cnspec/v11/apps/cnspec/cmd); to add:
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/logout.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package cmd

import (
cnquery_app "go.mondoo.com/cnquery/v10/apps/cnquery/cmd"
cnquery_app "go.mondoo.com/cnquery/v11/apps/cnquery/cmd"
)

func init() {
Expand Down
16 changes: 8 additions & 8 deletions apps/cnspec/cmd/policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ import (
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"go.mondoo.com/cnquery/v10/cli/config"
"go.mondoo.com/cnquery/v10/cli/theme"
"go.mondoo.com/cnquery/v10/providers"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream/gql"
"go.mondoo.com/cnspec/v10/internal/bundle"
"go.mondoo.com/cnspec/v10/policy"
cnspec_upstream "go.mondoo.com/cnspec/v10/upstream"
"go.mondoo.com/cnquery/v11/cli/config"
"go.mondoo.com/cnquery/v11/cli/theme"

Check failure on line 19 in apps/cnspec/cmd/policy.go

View workflow job for this annotation

GitHub Actions / go-test

missing go.sum entry for module providing package go.mondoo.com/cnquery/v11/cli/theme (imported by go.mondoo.com/cnspec/v11/apps/cnspec/cmd); to add:
"go.mondoo.com/cnquery/v11/providers"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream/gql"
"go.mondoo.com/cnspec/v11/internal/bundle"
"go.mondoo.com/cnspec/v11/policy"
cnspec_upstream "go.mondoo.com/cnspec/v11/upstream"
mondoogql "go.mondoo.com/mondoo-go"
"gopkg.in/yaml.v3"
"k8s.io/utils/ptr"
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/providers.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package cmd

import (
cnquery_app "go.mondoo.com/cnquery/v10/apps/cnquery/cmd"
cnquery_app "go.mondoo.com/cnquery/v11/apps/cnquery/cmd"
)

func init() {
Expand Down
20 changes: 10 additions & 10 deletions apps/cnspec/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ import (
"github.com/spf13/cobra"
"github.com/spf13/cobra/doc"
"github.com/spf13/viper"
"go.mondoo.com/cnquery/v10"
cnquery_app "go.mondoo.com/cnquery/v10/apps/cnquery/cmd"
"go.mondoo.com/cnquery/v10/cli/config"
cli_errors "go.mondoo.com/cnquery/v10/cli/errors"
"go.mondoo.com/cnquery/v10/cli/providers"
"go.mondoo.com/cnquery/v10/cli/theme"
"go.mondoo.com/cnquery/v10/cli/theme/colors"
"go.mondoo.com/cnquery/v10/logger"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/sysinfo"
"go.mondoo.com/cnspec/v10"
"go.mondoo.com/cnquery/v11"

Check failure on line 19 in apps/cnspec/cmd/root.go

View workflow job for this annotation

GitHub Actions / go-test

missing go.sum entry for module providing package go.mondoo.com/cnquery/v11 (imported by go.mondoo.com/cnspec/v11/apps/cnspec/cmd); to add:
cnquery_app "go.mondoo.com/cnquery/v11/apps/cnquery/cmd"
"go.mondoo.com/cnquery/v11/cli/config"
cli_errors "go.mondoo.com/cnquery/v11/cli/errors"

Check failure on line 22 in apps/cnspec/cmd/root.go

View workflow job for this annotation

GitHub Actions / go-test

missing go.sum entry for module providing package go.mondoo.com/cnquery/v11/cli/errors (imported by go.mondoo.com/cnspec/v11/apps/cnspec/cmd); to add:
"go.mondoo.com/cnquery/v11/cli/providers"

Check failure on line 23 in apps/cnspec/cmd/root.go

View workflow job for this annotation

GitHub Actions / go-test

missing go.sum entry for module providing package go.mondoo.com/cnquery/v11/cli/providers (imported by go.mondoo.com/cnspec/v11/apps/cnspec/cmd); to add:
"go.mondoo.com/cnquery/v11/cli/theme"
"go.mondoo.com/cnquery/v11/cli/theme/colors"
"go.mondoo.com/cnquery/v11/logger"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/sysinfo"
"go.mondoo.com/cnspec/v11"
"go.mondoo.com/ranger-rpc"
"go.mondoo.com/ranger-rpc/plugins/scope"
)
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package cmd

import (
cnquery_app "go.mondoo.com/cnquery/v10/apps/cnquery/cmd"
cnquery_app "go.mondoo.com/cnquery/v11/apps/cnquery/cmd"
)

func init() {
Expand Down
28 changes: 14 additions & 14 deletions apps/cnspec/cmd/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ import (
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"go.mondoo.com/cnquery/v10"
"go.mondoo.com/cnquery/v10/cli/config"
"go.mondoo.com/cnquery/v10/cli/execruntime"
"go.mondoo.com/cnquery/v10/cli/inventoryloader"
"go.mondoo.com/cnquery/v10/cli/theme"
"go.mondoo.com/cnquery/v10/logger"
"go.mondoo.com/cnquery/v10/mqlc"
"go.mondoo.com/cnquery/v10/providers"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/inventory"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/plugin"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream"
"go.mondoo.com/cnspec/v10/cli/reporter"
"go.mondoo.com/cnspec/v10/policy"
"go.mondoo.com/cnspec/v10/policy/scan"
"go.mondoo.com/cnquery/v11"
"go.mondoo.com/cnquery/v11/cli/config"
"go.mondoo.com/cnquery/v11/cli/execruntime"

Check failure on line 18 in apps/cnspec/cmd/scan.go

View workflow job for this annotation

GitHub Actions / go-test

missing go.sum entry for module providing package go.mondoo.com/cnquery/v11/cli/execruntime (imported by go.mondoo.com/cnspec/v11/apps/cnspec/cmd); to add:
"go.mondoo.com/cnquery/v11/cli/inventoryloader"

Check failure on line 19 in apps/cnspec/cmd/scan.go

View workflow job for this annotation

GitHub Actions / go-test

missing go.sum entry for module providing package go.mondoo.com/cnquery/v11/cli/inventoryloader (imported by go.mondoo.com/cnspec/v11/apps/cnspec/cmd); to add:
"go.mondoo.com/cnquery/v11/cli/theme"
"go.mondoo.com/cnquery/v11/logger"
"go.mondoo.com/cnquery/v11/mqlc"
"go.mondoo.com/cnquery/v11/providers"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/inventory"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/plugin"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream"
"go.mondoo.com/cnspec/v11/cli/reporter"
"go.mondoo.com/cnspec/v11/policy"
"go.mondoo.com/cnspec/v11/policy/scan"
)

const (
Expand Down
30 changes: 15 additions & 15 deletions apps/cnspec/cmd/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ import (
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"go.mondoo.com/cnquery/v10"
"go.mondoo.com/cnquery/v10/cli/config"

cli_errors "go.mondoo.com/cnquery/v10/cli/errors"
"go.mondoo.com/cnquery/v10/cli/execruntime"
"go.mondoo.com/cnquery/v10/cli/inventoryloader"
"go.mondoo.com/cnquery/v10/cli/prof"
"go.mondoo.com/cnquery/v10/logger"
"go.mondoo.com/cnquery/v10/providers"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/inventory"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream"
"go.mondoo.com/cnspec/v10"
"go.mondoo.com/cnspec/v10/apps/cnspec/cmd/backgroundjob"
cnspec_config "go.mondoo.com/cnspec/v10/apps/cnspec/cmd/config"
"go.mondoo.com/cnspec/v10/policy/scan"
"go.mondoo.com/cnquery/v11"
"go.mondoo.com/cnquery/v11/cli/config"

cli_errors "go.mondoo.com/cnquery/v11/cli/errors"
"go.mondoo.com/cnquery/v11/cli/execruntime"
"go.mondoo.com/cnquery/v11/cli/inventoryloader"
"go.mondoo.com/cnquery/v11/cli/prof"

Check failure on line 20 in apps/cnspec/cmd/serve.go

View workflow job for this annotation

GitHub Actions / go-test

missing go.sum entry for module providing package go.mondoo.com/cnquery/v11/cli/prof (imported by go.mondoo.com/cnspec/v11/apps/cnspec/cmd); to add:
"go.mondoo.com/cnquery/v11/logger"
"go.mondoo.com/cnquery/v11/providers"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/inventory"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream"
"go.mondoo.com/cnspec/v11"
"go.mondoo.com/cnspec/v11/apps/cnspec/cmd/backgroundjob"
cnspec_config "go.mondoo.com/cnspec/v11/apps/cnspec/cmd/config"
"go.mondoo.com/cnspec/v11/policy/scan"
)

// we send a 78 exit code to prevent systemd from restart
Expand Down
12 changes: 6 additions & 6 deletions apps/cnspec/cmd/serve_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ import (
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"go.mondoo.com/cnquery/v10/cli/config"
"go.mondoo.com/cnquery/v10/logger"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/recording"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream"
cnspec_config "go.mondoo.com/cnspec/v10/apps/cnspec/cmd/config"
"go.mondoo.com/cnspec/v10/policy/scan"
"go.mondoo.com/cnquery/v11/cli/config"
"go.mondoo.com/cnquery/v11/logger"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/recording"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream"
cnspec_config "go.mondoo.com/cnspec/v11/apps/cnspec/cmd/config"
"go.mondoo.com/cnspec/v11/policy/scan"
)

func init() {
Expand Down
6 changes: 3 additions & 3 deletions apps/cnspec/cmd/shell.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
cnquery_app "go.mondoo.com/cnquery/v10/apps/cnquery/cmd"
"go.mondoo.com/cnquery/v10/providers"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/plugin"
cnquery_app "go.mondoo.com/cnquery/v11/apps/cnquery/cmd"
"go.mondoo.com/cnquery/v11/providers"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/plugin"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package cmd

import (
cnquery_app "go.mondoo.com/cnquery/v10/apps/cnquery/cmd"
cnquery_app "go.mondoo.com/cnquery/v11/apps/cnquery/cmd"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/pkg/errors"
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"go.mondoo.com/cnquery/v10/cli/config"
"go.mondoo.com/cnquery/v11/cli/config"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/vault.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package cmd

import (
cnquery_app "go.mondoo.com/cnquery/v10/apps/cnquery/cmd"
cnquery_app "go.mondoo.com/cnquery/v11/apps/cnquery/cmd"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion apps/cnspec/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"fmt"

"github.com/spf13/cobra"
"go.mondoo.com/cnspec/v10"
"go.mondoo.com/cnspec/v11"
)

// versionCmd represents the version command
Expand Down
14 changes: 7 additions & 7 deletions apps/cnspec/cmd/vuln.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import (
"github.com/rs/zerolog/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"go.mondoo.com/cnquery/v10/logger"
"go.mondoo.com/cnquery/v10/providers"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/plugin"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream/mvd"
"go.mondoo.com/cnquery/v10/sbom"
"go.mondoo.com/cnspec/v10/cli/reporter"
"go.mondoo.com/cnspec/v10/policy"
"go.mondoo.com/cnquery/v11/logger"
"go.mondoo.com/cnquery/v11/providers"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/plugin"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream/mvd"
"go.mondoo.com/cnquery/v11/sbom"
"go.mondoo.com/cnspec/v11/cli/reporter"
"go.mondoo.com/cnspec/v11/policy"
)

func init() {
Expand Down
6 changes: 3 additions & 3 deletions apps/cnspec/cnspec.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
package main

import (
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream/health"
"go.mondoo.com/cnspec/v10"
"go.mondoo.com/cnspec/v10/apps/cnspec/cmd"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream/health"

Check failure on line 7 in apps/cnspec/cnspec.go

View workflow job for this annotation

GitHub Actions / go-test

missing go.sum entry for module providing package go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream/health (imported by go.mondoo.com/cnspec/v11/apps/cnspec); to add:
"go.mondoo.com/cnspec/v11"
"go.mondoo.com/cnspec/v11/apps/cnspec/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion apps/gen-docs/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/rs/zerolog/log"
"github.com/spf13/pflag"
"go.mondoo.com/cnspec/v10/apps/cnspec/cmd"
"go.mondoo.com/cnspec/v11/apps/cnspec/cmd"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions cli/components/advisories/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

"github.com/rs/zerolog/log"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream/mvd"
"go.mondoo.com/cnquery/v10/providers/core/resources/versions/generic"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream/mvd"
"go.mondoo.com/cnquery/v11/providers/core/resources/versions/generic"
)

type RowWriter interface {
Expand Down
2 changes: 1 addition & 1 deletion cli/components/advisories/report_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"testing"

"github.com/stretchr/testify/require"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream/mvd"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream/mvd"
)

func TestFindVulnerablePackageWithoutNamespace(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions cli/components/advisory_results.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (

"github.com/cockroachdb/errors"
"github.com/olekukonko/tablewriter"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream/mvd"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream/mvd/cvss"
"go.mondoo.com/cnspec/v10/cli/components/advisories"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream/mvd"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream/mvd/cvss"
"go.mondoo.com/cnspec/v11/cli/components/advisories"
)

func NewAdvisoryResultTable() AdvisoryResultTable {
Expand Down
2 changes: 1 addition & 1 deletion cli/components/advisory_results_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream/mvd"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream/mvd"
"sigs.k8s.io/yaml"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/components/barchart.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"

"github.com/muesli/termenv"
"go.mondoo.com/cnquery/v10/cli/theme/colors"
"go.mondoo.com/cnquery/v11/cli/theme/colors"
)

func maxWidth(labels []string) int {
Expand Down
4 changes: 2 additions & 2 deletions cli/components/cvss_indicator.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package components

import (
"github.com/muesli/termenv"
"go.mondoo.com/cnquery/v10/cli/theme/colors"
"go.mondoo.com/cnquery/v10/providers-sdk/v1/upstream/mvd/cvss"
"go.mondoo.com/cnquery/v11/cli/theme/colors"
"go.mondoo.com/cnquery/v11/providers-sdk/v1/upstream/mvd/cvss"
)

func NewCvssIndicator() CvssIndicator {
Expand Down
2 changes: 1 addition & 1 deletion cli/components/paper.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strings"

"github.com/muesli/termenv"
"go.mondoo.com/cnquery/v10/cli/theme/colors"
"go.mondoo.com/cnquery/v11/cli/theme/colors"
)

type PaperCharsTheme struct {
Expand Down
4 changes: 2 additions & 2 deletions cli/components/rating.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package components

import (
"github.com/muesli/termenv"
"go.mondoo.com/cnquery/v10/cli/theme/colors"
"go.mondoo.com/cnspec/v10/policy"
"go.mondoo.com/cnquery/v11/cli/theme/colors"
"go.mondoo.com/cnspec/v11/policy"
)

var DefaultRatingColors = NewRating(colors.DefaultColorTheme)
Expand Down
Loading

0 comments on commit 8e03953

Please sign in to comment.