From 7e256025ea673f5f2818c69035d71c7db70b996a Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Tue, 3 Feb 2026 19:41:31 +0100 Subject: [PATCH] refactor: remove pnpm cache configuration from Node.js setup actions in pipeline workflows. --- .gitea/workflows/pipeline.yml | 2 -- packages/infra/gitea/deploy-action.yml | 1 - 2 files changed, 3 deletions(-) diff --git a/.gitea/workflows/pipeline.yml b/.gitea/workflows/pipeline.yml index afe6129..2524917 100644 --- a/.gitea/workflows/pipeline.yml +++ b/.gitea/workflows/pipeline.yml @@ -28,7 +28,6 @@ jobs: uses: actions/setup-node@v4 with: node_version: 20 - cache: 'pnpm' - name: Install dependencies run: pnpm install --frozen-lockfile @@ -69,7 +68,6 @@ jobs: uses: actions/setup-node@v4 with: node_version: 20 - cache: 'pnpm' - name: Install dependencies run: pnpm install --frozen-lockfile diff --git a/packages/infra/gitea/deploy-action.yml b/packages/infra/gitea/deploy-action.yml index 55e995d..2bb1fac 100644 --- a/packages/infra/gitea/deploy-action.yml +++ b/packages/infra/gitea/deploy-action.yml @@ -148,7 +148,6 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 - cache: 'npm' - name: Install dependencies run: npm ci