From e1963bbab03ecddafd05014f8c29e7b31e95dc6e Mon Sep 17 00:00:00 2001 From: Alexis Couvreur Date: Tue, 5 Nov 2024 00:53:11 -0500 Subject: [PATCH] ci: switch from renovate to depandabot --- .github/dependabot.yml | 29 +++++++++++++++++++++++++++++ renovate.json | 6 ------ 2 files changed, 29 insertions(+), 6 deletions(-) create mode 100644 .github/dependabot.yml delete mode 100644 renovate.json diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..5352a4e3 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,29 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directories: + - "/" + - "/plugins/caddy" + - "/plugins/proxywasm" + - "/plugins/traefik" + schedule: + interval: "daily" + assignees: + - "acouvreur" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + assignees: + - "acouvreur" + + # Enable version updates for Docker + - package-ecosystem: "docker" + # Look for a `Dockerfile` in the `root` directory + directory: "**/*" + # Check for updates once a week + schedule: + interval: "weekly" + assignees: + - "acouvreur" \ No newline at end of file diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 39a2b6e9..00000000 --- a/renovate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ] -}