Skip to content

Commit b5a5d33

Browse files
committed
fix: remove all pnpm version specifications from CI workflow
The pnpm/action-setup@v4 action automatically detects the version from package.json's packageManager field. Specifying version: 9 causes conflicts.
1 parent 9023447 commit b5a5d33

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ jobs:
3535

3636
- name: Install pnpm
3737
uses: pnpm/action-setup@v4
38-
with:
39-
version: 9
4038

4139
- uses: actions/setup-node@v4
4240
with:
@@ -59,8 +57,6 @@ jobs:
5957

6058
- name: Install pnpm
6159
uses: pnpm/action-setup@v4
62-
with:
63-
version: 9
6460

6561
- uses: actions/setup-node@v4
6662
with:
@@ -83,8 +79,6 @@ jobs:
8379

8480
- name: Install pnpm
8581
uses: pnpm/action-setup@v4
86-
with:
87-
version: 9
8882

8983
- uses: actions/setup-node@v4
9084
with:
@@ -95,4 +89,4 @@ jobs:
9589
run: pnpm install --frozen-lockfile
9690

9791
- name: Security audit
98-
run: pnpm audit
92+
run: pnpm audit

0 commit comments

Comments
 (0)