From 855a3861dfa3b2e0eb86be9a35e93049191a54b5 Mon Sep 17 00:00:00 2001 From: Rik Date: Wed, 14 Aug 2024 12:08:16 -0700 Subject: [PATCH] Update to ignore a version of eleventy-plugin-rss that is too new. (#273) From: https://www.11ty.dev/docs/plugins/rss/#installation v2 of this this plugin requires Eleventy v3.0 or newer. v1 of this plugin is compatible with Eleventy 0.11 or newer. This change tells dependabot not to go over v1.2.0 --- .github/dependabot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cd4988b..75da1a6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,4 +12,7 @@ updates: ignore: - dependency-name: "@sindresorhus/slugify" # For slugify, ignore all updates. - \ No newline at end of file + - dependency-name: "@11ty/eleventy-plugin-rss" + versions [ "^1.2.0" ] + +