diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2fccaad8..22b801a9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,10 @@ updates: directory: / schedule: interval: daily + - package-ecosystem: gomod + directory: /scripts + schedule: + interval: daily - package-ecosystem: github-actions directory: / schedule: diff --git a/pkg/storage/api/interface.go b/pkg/storage/api/interface.go index 44a01f89..194c5f37 100644 --- a/pkg/storage/api/interface.go +++ b/pkg/storage/api/interface.go @@ -11,6 +11,7 @@ type Storage interface { PolicyReports() PolicyReportsInterface ClusterPolicyReports() ClusterPolicyReportsInterface } + type PolicyReportsInterface interface { Get(ctx context.Context, name, namespace string) (v1alpha2.PolicyReport, error) List(ctx context.Context, namespace string) ([]v1alpha2.PolicyReport, error)