We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 554beb0 commit 64fcce1Copy full SHA for 64fcce1
1 file changed
.github/workflows/codeql.yml
@@ -36,17 +36,18 @@ jobs:
36
uses: pnpm/action-setup@v4
37
with:
38
version: 10.26.1
39
+ run_install: false
40
41
- name: Setup Node.js
42
if: matrix.language == 'javascript-typescript'
43
uses: actions/setup-node@v4
44
45
node-version: 20
- cache: 'pnpm'
46
+ # ⚠️ No cache: 'pnpm' here — pnpm/action-setup handles caching
47
48
- name: Install dependencies
49
- run: pnpm install
50
+ run: pnpm install --frozen-lockfile
51
52
- name: Initialize CodeQL
53
uses: github/codeql-action/init@v4
0 commit comments