Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## [Unreleased]

### Fixed

- Pin Marketplace ZIP Signer to `0.1.43` so `signPlugin` is deterministically resolvable and no longer fails with "No Marketplace ZIP Signer executable found" on a stale Gradle cache in the nightly/release workflows

## [261.19017.1] - 2026-04-28

### Added
Expand Down
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,12 @@ dependencies {
bundledPlugin("com.intellij.modules.json")

pluginVerifier()
zipSigner()
// Pin the Marketplace ZIP Signer version so the signing dependency is always
// deterministically resolvable. Without a version, a stale Gradle cache restored
// by gradle/actions (e.g. saved by a non-signing build.yml run) can leave the
// signing configuration empty, causing signPlugin to fail with
// "No Marketplace ZIP Signer executable found" in the nightly/release workflows.
zipSigner("0.1.43")

testFramework(TestFrameworkType.Platform)
testFramework(TestFrameworkType.Plugin.Java)
Expand Down
Loading