From 7911bde929678fa89677b587eb070549fea40b29 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 01:48:10 +0000 Subject: [PATCH 1/2] Bump com.diffplug.spotless from 8.5.1 to 8.6.0 Bumps com.diffplug.spotless from 8.5.1 to 8.6.0. --- updated-dependencies: - dependency-name: com.diffplug.spotless dependency-version: 8.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index a373550..60ea119 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -9,7 +9,7 @@ plugins { kotlin("jvm") version kotlinVersion kotlin("plugin.spring") version kotlinVersion id("org.openapi.generator") version "7.22.0" - id("com.diffplug.spotless") version "8.5.1" + id("com.diffplug.spotless") version "8.6.0" } java.sourceCompatibility = JavaVersion.VERSION_21 From 966506bbc332307cca23aa445be755d7df54bfcd Mon Sep 17 00:00:00 2001 From: Yonatan Karp-Rudin Date: Mon, 1 Jun 2026 12:13:02 +0200 Subject: [PATCH 2/2] Fix Spotless linter init conflict --- .github/spotless.gradle.kts | 1 + .github/workflows/pull_request.yml | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 .github/spotless.gradle.kts diff --git a/.github/spotless.gradle.kts b/.github/spotless.gradle.kts new file mode 100644 index 0000000..9794428 --- /dev/null +++ b/.github/spotless.gradle.kts @@ -0,0 +1 @@ +// Intentionally empty: this project applies and configures Spotless directly. diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 1a1d5af..5f67ba2 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -28,3 +28,5 @@ jobs: linters: uses: yonatankarp/github-actions/.github/workflows/linters.yml@v2 + with: + spotless-gradle-init: .github/spotless.gradle.kts