Plugin verifier does not seem to respect sinceBuild/untilBuild properties

My GitHub builds of the ktlint-intellij-plugin regularly break on lack of diskspace in the last couple of weeks.

Based on IntelliJ Platform Extension | IntelliJ Platform Plugin SDK I have tried to restrict the IDEA versions for which I want the Plugin Verifier to run during my GitHub builds to a subset of the versions for which I want the plugin to be compatible with. So basically I want to keep the plugin compatible with latest 6 IDEA versions, and running the Plugin Verifier only with latest 3 IDEA versions.

So I have define an additional property verifyPluginSinceBuild :

pluginSinceBuild = 241
verifyPluginSinceBuild = 251
pluginUntilBuild = 253.*

and change the PluginVerification to:

    pluginVerification {
        ides {
            recommended()
            select {
                types = listOf(IntelliJPlatformType.IntellijIdea)
                channels = listOf(ProductRelease.Channel.RELEASE, ProductRelease.Channel.EAP)
                // When supporting too many versions, the pluginVerifier task in the build crashes because it runs out of disk space as
                // each supported version is downloaded for verification. So in the GitHub build, we restrict the number of IDEA versions
                // that are verified to a subset of the IDEA version in which the plugin can be used. Note that Jetbrains still performs a
                // verification on all IDEA versions. Those results can be looked up via the plugin marketplace.
                sinceBuild = providers.gradleProperty("verifyPluginSinceBuild")
                untilBuild = providers.gradleProperty("pluginUntilBuild")
            }
        }
    }

To my surprise the build is still trying to verify all IDEA versions from pluginSinceBuild until pluginUntilBuild. For example see Bump org.jetbrains.kotlin.jvm from 2.2.20 to 2.2.21 (#733) · nbadal/ktlint-intellij-plugin@94a4f02 · GitHub

PluginVersion `0.30.0-beta-1.2025-10-25_14-05-34` publishes the plugin to channels: [beta, dev]
[org.jetbrains.intellij.platform] The verifyPlugin task is about to resolve 6 IDEs: idea:idea:253.27864.23, idea:ideaIU:2025.2.4, idea:ideaIU:2025.1.6, idea:ideaIU:2024.3.7, idea:ideaIU:2024.2.6, idea:ideaIU:2024.1.7
[org.jetbrains.intellij.platform] The verifyPlugin task is about to resolve 6 IDEs: idea:idea:253.27864.23, idea:ideaIU:2025.2.4, idea:ideaIU:2025.1.6, idea:ideaIU:2024.3.7, idea:ideaIU:2024.2.6, idea:ideaIU:2024.1.7

Any ideas why my approach does not work?