Skip to content

Commit

Permalink
fix: pin pnpm to 7.11.0 in action scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Sujith <[email protected]>
  • Loading branch information
sujithvn committed Jun 13, 2023
1 parent 3e718c9 commit 48a4bf0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
node-version: "18.10.0"

- name: Install pnpm
run: npm i -g pnpm@latest
run: npm i -g pnpm@7.11.0

- name: Install dependencies
run: pnpm install --ignore-scripts
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
node-version: "18.10.0"

- name: Install pnpm
run: npm i -g pnpm@latest
run: npm i -g pnpm@7.11.0

- name: Install dependencies
run: pnpm install --ignore-scripts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
node-version: "18.10.0"

- name: Install pnpm
run: npm i -g pnpm@latest
run: npm i -g pnpm@7.11.0

- name: Install Dependencies
run: pnpm install --ignore-scripts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tagging-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Install dependencies
run: |
npm i -g pnpm@latest
npm i -g pnpm@7.11.0
pnpm install -r --ignore-scripts
- name: Get tag version
id: get-tag-version
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ instructions

## Install PNPM
```bash
npm i -g pnpm@latest
npm i -g pnpm@7.11.0
```

## Clone and Start the source
Expand Down

0 comments on commit 48a4bf0

Please sign in to comment.