From 2b481f46eb2ac3f24a54d302b6cab4654a7cb440 Mon Sep 17 00:00:00 2001 From: ghostflyby Date: Sat, 21 Mar 2026 20:10:25 +0800 Subject: [PATCH 1/2] chore(deps): ignore ktor and spotless plugins in dependabot config --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fe30e00..9e315cd 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,6 +6,12 @@ updates: # Maintain dependencies for Gradle dependencies - package-ecosystem: "gradle" directory: "/" + ignore: + # depends on kotlin-stdlib ABI, + # which is bundled with and determined by Gradle + - name: io.ktor:ktor-server-cio + - name: io.ktor:ktor-client-cio + - name: com.diffplug.spotless:com.diffplug.spotless.gradle.plugin schedule: interval: "daily" # Maintain dependencies for GitHub Actions From f1881a95f9711b25f8f52c2e9f6e85bc16154862 Mon Sep 17 00:00:00 2001 From: ghostflyby Date: Sat, 21 Mar 2026 21:43:25 +0800 Subject: [PATCH 2/2] chore(deps): update dependabot ignore config to use dependency-name field --- .github/dependabot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9e315cd..3c26f60 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,9 +9,9 @@ updates: ignore: # depends on kotlin-stdlib ABI, # which is bundled with and determined by Gradle - - name: io.ktor:ktor-server-cio - - name: io.ktor:ktor-client-cio - - name: com.diffplug.spotless:com.diffplug.spotless.gradle.plugin + - dependency-name: io.ktor:ktor-server-cio + - dependency-name: io.ktor:ktor-client-cio + - dependency-name: com.diffplug.spotless:com.diffplug.spotless.gradle.plugin schedule: interval: "daily" # Maintain dependencies for GitHub Actions