Skip to content

Commit

Permalink
ci: pin pnpm to 8.15.5 (#23691)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolg42 committed Apr 2, 2024
1 parent dcdeac0 commit 3d415f0
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT}
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"

# To install more global node packages
RUN su node -c "npm install -g pnpm@7 ts-node"
RUN su node -c "npm install -g pnpm@8.15.5 ts-node"
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
uses: ./.github/actions/setup
with:
node-version: 20
pnpm-version: 8
pnpm-version: 8.15.5
skip-tsc: false

- name: Run benchmarks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundle-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: ./.github/actions/setup
with:
node-version: 18
pnpm-version: 8
pnpm-version: 8.15.5
skip-tsc: true
skip-build: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
uses: ./.github/actions/setup
with:
node-version: 18
pnpm-version: 8
pnpm-version: 8.15.5
skip-tsc: false

- name: Publish all packages to npm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- uses: ./.github/actions/setup
with:
node-version: 18
pnpm-version: 8
pnpm-version: 8.15.5
skip-tsc: false

- name: Publish all packages to npm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -ex

npm i --silent -g pnpm@8 --unsafe-perm
npm i --silent -g pnpm@8.15.5 --unsafe-perm

pnpm i

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ on:
pnpmVersion:
description: pnpm package manager version
type: string
default: '8'
default: '8.15.5'
engineHash:
description: Customly-built engine hash to use
type: string
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-engines-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: pnpm/action-setup@v3.0.0
with:
version: 8
version: 8.15.5

- uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-studio-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: pnpm/action-setup@v3.0.0
with:
version: 8
version: 8.15.5

- uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Copy paste these commands to install the global dependencies:
```bash
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash
nvm install 18
npm install --global pnpm@8 ts-node
npm install --global pnpm@8.15.5 ts-node
```

## General Setup
Expand Down

0 comments on commit 3d415f0

Please sign in to comment.