From 496cb9ec8db24deccc4c77509585ebd5a61f4529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charles-Edouard=20Br=C3=A9t=C3=A9ch=C3=A9?= Date: Wed, 24 Jan 2024 00:23:25 +0100 Subject: [PATCH] chore: update dependabot (#30) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Charles-Edouard Brétéché --- .github/dependabot.yml | 4 ++++ pkg/storage/api/interface.go | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2fccaad..22b801a 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 44a01f8..194c5f3 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)