From c3ad8950f51899f5964825da4815515bf8e85fe3 Mon Sep 17 00:00:00 2001 From: Chee Kian Teoh Date: Sat, 13 Apr 2024 17:25:42 -0400 Subject: [PATCH] fix: invalid details in dependabot.yml The property '#/updates/0/package-ecosystem' value "pnpm" did not match one of the following values: npm, bundler, composer, devcontainers, maven, mix, cargo, gradle, nuget, gomod, docker, elm, gitsubmodule, github-actions, pip, terraform, pub, swift --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6ef87cee..5f0889ce 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ version: 2 updates: - - package-ecosystem: "pnpm" # See documentation for possible values + - package-ecosystem: "npm" # See documentation for possible values directory: "/" # Location of package manifests schedule: interval: "weekly"