diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cb34256c..0226073b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -67,6 +67,14 @@ updates: directory: "/site" schedule: interval: "weekly" + - package-ecosystem: "gomod" + directory: "/api/tests/integration/testdata/services/grpc" + schedule: + interval: "weekly" + - package-ecosystem: "gomod" + directory: "/examples/dev_your_plugin" + schedule: + interval: "weekly" - package-ecosystem: "npm" directory: "/site" schedule: diff --git a/common.mk b/common.mk index 1b068a1b..d0ec4677 100644 --- a/common.mk +++ b/common.mk @@ -42,7 +42,7 @@ GATEWAY_API_VERSION = 1.0.0 MIN_K8S_VERSION = 1.26.0 GO_PROD_MODULES = api types controller plugins # To make life simper, we only run linter on 'prod modules' -GO_MODULES = $(GO_PROD_MODULES) e2e site tools ./examples/dev_your_plugin +GO_MODULES = $(GO_PROD_MODULES) e2e site tools ./examples/dev_your_plugin api/tests/integration/testdata/services/grpc # Don't run `go mod tidy` with `site` module, as this module is managed by docsy build image GO_MODULES_EXCLUDE_SITE = $(filter-out site,$(GO_MODULES))