Skip to content

Commit e6674fa

Browse files
authored
chore: try actions/setup-node before pnpm/action-setup (#2332)
1 parent 49d17cb commit e6674fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/plan-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ jobs:
5252
with:
5353
fetch-depth: 0
5454
ref: 'master'
55+
- uses: pnpm/action-setup@v4
5556
- uses: actions/setup-node@v5
5657
with:
5758
node-version: 18
58-
- uses: pnpm/action-setup@v4
5959
- run: pnpm install --frozen-lockfile
6060
- name: "Generate Explanation and Prep Changelogs"
6161
id: explanation

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ jobs:
4545

4646
steps:
4747
- uses: actions/checkout@v5
48+
- uses: pnpm/action-setup@v4
4849
- uses: actions/setup-node@v5
4950
with:
5051
node-version: 18
5152
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
5253
registry-url: 'https://registry.npmjs.org'
53-
- uses: pnpm/action-setup@v4
5454
- run: pnpm install --frozen-lockfile
5555
- run: pnpm release-plan publish --provenance
5656
env:

0 commit comments

Comments
 (0)