diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..ce95a626e9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +version: 2 +updates: + # Update npm dependencies based on package.json + - package-ecosystem: "npm" + directory: "/" # Root directory + schedule: + interval: "weekly" + + # Update Yarn dependencies based on yarn.lock + - package-ecosystem: "yarn" + directory: "/" # Root directory + schedule: + interval: "weekly" + + # Keep Dependabot itself up to date + - package-ecosystem: "github-actions" + directory: "/" # Root directory (or specify if actions are elsewhere) + schedule: + interval: "weekly"