Skip to content

Commit 64fcce1

Browse files
committed
fix: remove cache pnpm from setup-node, let pnpm/action-setup handle it
1 parent 554beb0 commit 64fcce1

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,18 @@ jobs:
3636
uses: pnpm/action-setup@v4
3737
with:
3838
version: 10.26.1
39+
run_install: false
3940

4041
- name: Setup Node.js
4142
if: matrix.language == 'javascript-typescript'
4243
uses: actions/setup-node@v4
4344
with:
4445
node-version: 20
45-
cache: 'pnpm'
46+
# ⚠️ No cache: 'pnpm' here — pnpm/action-setup handles caching
4647

4748
- name: Install dependencies
4849
if: matrix.language == 'javascript-typescript'
49-
run: pnpm install
50+
run: pnpm install --frozen-lockfile
5051

5152
- name: Initialize CodeQL
5253
uses: github/codeql-action/init@v4

0 commit comments

Comments
 (0)