From 6cc062f76f77d11a8264b904dafb21c5b74fcfba Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Fri, 25 Oct 2024 06:12:23 +0200 Subject: [PATCH] dependabot: Keep sass at < 1.80 sass 1.80 (and 2.x) introduces tons of "@import rules are deprecated". These are unfixable on our side due to PatternFly using them extensively. We don't need any new sass features, so stick to 1.79.x. Explicitly not ignore 3.x (which will drop @import) to get a reminder in the future to try and clean this up again. Same as https://github.com/cockpit-project/cockpit/pull/21155 Closes #1017 --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 56ceb21..090ac31 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -29,6 +29,11 @@ updates: - "@types*" - "types*" + ignore: + # https://github.com/cockpit-project/cockpit/issues/21151 + - dependency-name: "sass" + versions: ["1.80.x", "2.x"] + - package-ecosystem: "github-actions" directory: "/" open-pull-requests-limit: 3