From 5bc4175609b5adc59007637c78e2eb52125bea3d Mon Sep 17 00:00:00 2001 From: Daz DeBoer Date: Mon, 7 Sep 2026 18:38:40 -0600 Subject: [PATCH] Bump dependency-graph-gradle-plugin to 1.5.0 (#1069) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the default version of the [GitHub Dependency Graph Gradle Plugin](https://plugins.gradle.org/plugin/org.gradle.github-dependency-graph-gradle-plugin) applied by the `dependency-submission` init-script from `1.4.2` to `1.5.0`. `1.5.0` is the latest version published to the Gradle Plugin Portal. Users can still override this via the `dependency-graph-plugin.version` input parameter (`DEPENDENCY_GRAPH_PLUGIN_VERSION`), so this only changes the default. ## Notes The init-script is read at runtime from `sources/src/resources` rather than being inlined into the bundle, so this single source change is the whole fix — no `dist` update is needed for the new version to take effect (CI refreshes `dist` as usual). ## Verification - `npm run check` (prettier + eslint) passes - `npm run test`: 489 passed. The 2 failing wrapper-validation suites are pre-existing network-dependent failures on this machine — confirmed identical on a clean tree with this change stashed - Confirmed `1.5.0` is published to the plugin portal (and that a bogus version 404s, so the check is meaningful) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 5 (1M context) --- ...e-actions.github-dependency-graph-gradle-plugin-apply.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/src/resources/init-scripts/gradle-actions.github-dependency-graph-gradle-plugin-apply.groovy b/sources/src/resources/init-scripts/gradle-actions.github-dependency-graph-gradle-plugin-apply.groovy index ebf3f152..2a832a9d 100644 --- a/sources/src/resources/init-scripts/gradle-actions.github-dependency-graph-gradle-plugin-apply.groovy +++ b/sources/src/resources/init-scripts/gradle-actions.github-dependency-graph-gradle-plugin-apply.groovy @@ -6,7 +6,7 @@ buildscript { def pluginRepositoryUrl = getInputParam('gradle.plugin-repository.url') ?: 'https://plugins.gradle.org/m2' def pluginRepositoryUsername = getInputParam('gradle.plugin-repository.username') def pluginRepositoryPassword = getInputParam('gradle.plugin-repository.password') - def dependencyGraphPluginVersion = getInputParam('dependency-graph-plugin.version') ?: '1.4.2' + def dependencyGraphPluginVersion = getInputParam('dependency-graph-plugin.version') ?: '1.5.0' logger.lifecycle("Resolving dependency graph plugin ${dependencyGraphPluginVersion} from plugin repository: ${pluginRepositoryUrl}") repositories {