From 27a72f749f263417c7073a6619e836e1dcc63073 Mon Sep 17 00:00:00 2001 From: Carlos Medeiros Date: Thu, 18 Jun 2026 16:39:39 +0100 Subject: [PATCH] fix: use v7 of npm publish workflow The v9 version of the shared `_publish-npm` workflow was causing release failures. Pinning to v7 resolves this incompatibility and ensures successful package publishing. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a175df8..2a7e0b6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,7 +18,7 @@ permissions: jobs: publish-npm: - uses: zondax/_workflows/.github/workflows/_publish-npm.yaml@v9 + uses: zondax/_workflows/.github/workflows/_publish-npm.yaml@v7 permissions: contents: read id-token: write # Required for OIDC trusted publishing - must be in caller!