From 80b87c12772709f6d02210a8b1f6d24a461e4fd0 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Tue, 18 Nov 2025 14:42:59 -0800 Subject: [PATCH] ci: fix cache step in release version bump workflow (#6740) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed the unnecessary `cache: 'pnpm'` configuration from the workflow since version bumping doesn't require dependency caching. The workflow configured `cache: 'pnpm'` in the Node.js setup step but never ran `pnpm install` to create the cache directories. The cache action expects paths like `~/.pnpm-store` and `node_modules` to exist, but since this workflow only runs `pnpm version` (which doesn't require dependencies), those paths are never created. Issue occurred here: https://github.com/Comfy-Org/ComfyUI_frontend/actions/runs/19478181571/job/55743250471 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6740-ci-fix-cache-step-in-release-version-bump-workflow-2af6d73d3650813b84a8e9d3272ad8fd) by [Unito](https://www.unito.io) --- .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