From 187f59eed305fefd763d0425a78056070b609d6d Mon Sep 17 00:00:00 2001 From: sno Date: Wed, 22 Oct 2025 15:42:56 +0900 Subject: [PATCH] [fix] Remove pnpm cache from release-version-bump workflow (#6199) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary - Fixed the "Post Setup Node.js" failure in the release-version-bump workflow - Removed unnecessary pnpm cache configuration that was causing validation errors fixes this JOB - [Release: Version Bump · Comfy-Org/ComfyUI_frontend@2e8e136]( https://github.com/Comfy-Org/ComfyUI_frontend/actions/runs/18695441150/job/53311521564 ) image ## Problem The workflow was failing with error: "Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved." This occurred because `setup-node@v4` with `cache: 'pnpm'` expects the pnpm store directory to exist, but the workflow never runs `pnpm install`. The workflow only executes `pnpm version`, which doesn't require dependencies to be installed. ## Solution Removed the `cache: 'pnpm'` configuration from the Setup Node.js step since: 1. The workflow doesn't install dependencies 2. The cache provides no benefit for this workflow 3. It was causing the post-setup cleanup step to fail ## Test Plan - [ ] Verify workflow runs successfully without cache errors - [ ] Confirm version bump functionality still works correctly 🤖 Generated with [Claude Code](https://claude.com/claude-code) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6199-fix-Remove-pnpm-cache-from-release-version-bump-workflow-2946d73d3650813dae7cf987a800e28b) by [Unito](https://www.unito.io) Co-authored-by: Claude --- .github/workflows/release-version-bump.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release-version-bump.yaml b/.github/workflows/release-version-bump.yaml index 5f3152285..30254c6aa 100644 --- a/.github/workflows/release-version-bump.yaml +++ b/.github/workflows/release-version-bump.yaml @@ -59,7 +59,6 @@ jobs: uses: actions/setup-node@v4 with: node-version: lts/* - cache: 'pnpm' - name: Bump version id: bump-version