From f19ddc7cdedbe757c17695e48ca3e691b8ce597b Mon Sep 17 00:00:00 2001 From: Daniel Sogl Date: Mon, 21 Jun 2021 13:41:17 +0200 Subject: [PATCH] chore(github): add dependabot action --- .github/workflows/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/dependabot.yml diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml new file mode 100644 index 000000000..5dd4d4bf9 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,13 @@ +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily"