From 7071bc2bd08303e979d1d7a33113ae63237c8c2c Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Tue, 8 Nov 2022 13:45:29 -0800 Subject: [PATCH] Add some dependabot ignores (#7108) --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d215ff3f2f..2771c18cf5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -34,6 +34,13 @@ updates: # need to scope gradle dependency updates down in this repo because most of the instrumentations # intentionally test against old library versions directory: "/examples/distro" + ignore: + - dependency-name: "javax.servlet:javax.servlet-api" + # examples are intentionally compiled and tested against Servlet 3.0 + versions: [ "[3.1,)" ] + - dependency-name: "org.eclipse.jetty:jetty-servlet" + # examples are intentionally compiled and tested against Servlet 3.0 + versions: [ "[9.0,)" ] rebase-strategy: "disabled" schedule: interval: "daily" @@ -43,6 +50,13 @@ updates: # need to scope gradle dependency updates down in this repo because most of the instrumentations # intentionally test against old library versions directory: "/examples/extension" + ignore: + - dependency-name: "javax.servlet:javax.servlet-api" + # examples are intentionally compiled and tested against Servlet 3.0 + versions: [ "[3.1,)" ] + - dependency-name: "org.eclipse.jetty:jetty-servlet" + # examples are intentionally compiled and tested against Servlet 3.0 + versions: [ "[9.0,)" ] rebase-strategy: "disabled" schedule: interval: "daily"