Skip to content

Commit ca43f27

Browse files
committed
chore: pin workflow usage of pnpm to v7
1 parent c40938b commit ca43f27

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/actions/install-node-and-dependencies/action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ runs:
2929
run: ${{ inputs.install-command }}
3030
shell: bash
3131

32-
- name: Install pnpm
33-
run: npm install -g pnpm
32+
- name: Install pnpm v7
33+
run: npm install -g pnpm@7
34+
shell: bash
35+
36+
- run: pnpm --version
3437
shell: bash

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ jobs:
195195
echo "is_affected=$IS_AFFECTED" >> $GITHUB_OUTPUT
196196
shell: bash
197197

198-
- name: Install pnpm
199-
run: npm install -g pnpm
198+
- name: Install pnpm v7
199+
run: npm install -g pnpm@7
200200
shell: bash
201201

202202
- run: pnpm --version

.github/workflows/other-node-versions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ jobs:
6565
jq 'del(.volta)' package.json > package.json.tmp
6666
mv package.json.tmp package.json
6767
68-
- name: Install pnpm
69-
run: npm install -g pnpm
68+
- name: Install pnpm v7
69+
run: npm install -g pnpm@7
7070
shell: bash
7171

7272
- run: pnpm --version

0 commit comments

Comments
 (0)