Skip to content

Commit 3238afa

Browse files
authored
Merge pull request #444 from NullVoxPopuli/manually-tell-ci-to-use-pnpm-9-everywhere
Manually tell CI to use pnpm 9 everywhere
2 parents 7d0ea54 + 56bc53e commit 3238afa

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/plan-release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,19 @@ jobs:
5454
- uses: actions/setup-node@v4
5555
with:
5656
node-version: 18
57-
57+
5858
- uses: pnpm/action-setup@v3
5959
with:
60-
version: 8
60+
version: 9
6161
- run: pnpm install --frozen-lockfile
62-
62+
6363
- name: "Generate Explanation and Prep Changelogs"
6464
id: explanation
6565
run: |
6666
set +e
67-
67+
6868
pnpm release-plan prepare 2> >(tee -a release-plan-stderr.txt >&2)
69-
69+
7070
7171
if [ $? -ne 0 ]; then
7272
echo 'text<<EOF' >> $GITHUB_OUTPUT

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ jobs:
4949
node-version: 18
5050
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
5151
registry-url: 'https://registry.npmjs.org'
52-
52+
5353
- uses: pnpm/action-setup@v3
5454
with:
55-
version: 8
55+
version: 9
5656
- run: pnpm install --frozen-lockfile
5757
- name: npm publish
5858
run: pnpm release-plan publish
59-
59+
6060
env:
6161
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
6262
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/push-dist.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: pnpm/action-setup@v3
2121
with:
22-
version: 8
22+
version: 9
2323
- uses: actions/setup-node@v4
2424
with:
2525
node-version: 18

0 commit comments

Comments
 (0)