Skip to content

Commit 8df5a01

Browse files
authored
Merge pull request #2696 from srod/develop
fix(codeql): use Bun instead of npm for dependency installation
2 parents 16c4707 + a838592 commit 8df5a01

1 file changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,16 @@ jobs:
2626
- name: Checkout repository
2727
uses: actions/checkout@v6
2828

29+
- name: Setup Bun
30+
uses: oven-sh/setup-bun@v2
31+
2932
- name: Setup Node.js
3033
uses: actions/setup-node@v4
3134
with:
3235
node-version: '22'
3336

34-
- name: Cache node_modules
35-
uses: actions/cache@v4
36-
with:
37-
path: node_modules
38-
key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
39-
restore-keys: |
40-
${{ runner.os }}-node-modules-
41-
4237
- name: Install dependencies
43-
run: npm ci
38+
run: bun install --frozen-lockfile
4439

4540
- name: Initialize CodeQL
4641
uses: github/codeql-action/init@v4

0 commit comments

Comments
 (0)