From 2a9a9ed56e65e16569b47263a2a67d3f98da82b7 Mon Sep 17 00:00:00 2001 From: Helen <56097766+heyams@users.noreply.github.com> Date: Tue, 31 Jan 2023 15:40:52 -0800 Subject: [PATCH] Add a comment for ignoring spring-boot-3 for now (#2894) --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4ed6be7b014..969b85217b5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -29,6 +29,10 @@ updates: - dependency-name: "com.squareup.moshi:*" # 1.12.0 and above use okio 2.x which pulls in kotlin libs (which are large) versions: [ "[1.12,)" ] + - dependency-name: "org.springframework.boot:spring-boot-gradle-plugin" + # this is used for smoke tests + # spring boot 3 requires Java 17, and we're not ready yet + versions: [ "[3,)" ] - dependency-name: "javax.servlet:javax.servlet-api" # applicationinsights-web (classic sdk) is intentionally compiled and against Servlet 3.0 versions: [ "[3.1,)" ]