From 1b6e42f5ee5b7fcdb268ffe25f1e06ce3f06f301 Mon Sep 17 00:00:00 2001 From: Mogeko Date: Mon, 3 Jul 2023 22:26:12 +0200 Subject: [PATCH] build: Dependabot now supports pnpm But still missing the proper logic to implement security update support. See: https://github.com/dependabot/dependabot-core/issues/7434 --- .github/dependabot.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 236e2d1..1ed5df9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,6 +8,8 @@ updates: directory: "/" schedule: interval: "weekly" - - # dependabot does not support pnpm yet. - # Track the issue: https://github.com/dependabot/dependabot-core/issues/1736 + # Enable version updates for PNPM + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly"