Skip to content

Commit 3b39f2c

Browse files
committed
move pnpm version specifier to actions
1 parent ec0eeb1 commit 3b39f2c

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323

2424
- name: Setup pnpm
2525
uses: pnpm/action-setup@v4
26+
with:
27+
version: latest
2628

2729
- name: Setup Node.js
2830
uses: actions/setup-node@v4

action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,14 @@ inputs:
2020
runs:
2121
using: "composite"
2222
steps:
23+
- name: Checkout code
24+
uses: actions/checkout@v4
25+
with:
26+
fetch-depth: 1
2327
- name: Setup pnpm
2428
uses: pnpm/action-setup@v4
29+
with:
30+
version: latest
2531
- name: Setup Node.js 24
2632
uses: actions/setup-node@v4
2733
with:

entry.cjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26190,7 +26190,6 @@ var package_default = {
2619026190
upDeps: "pnpm up --latest",
2619126191
createLockfile: "pnpm --ignore-workspace install"
2619226192
},
26193-
packageManager: "[email protected]",
2619426193
dependencies: {
2619526194
"@ark/fs": "0.49.0",
2619626195
"@actions/core": "^1.11.1",

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"upDeps": "pnpm up --latest",
2727
"createLockfile": "pnpm --ignore-workspace install"
2828
},
29-
"packageManager": "[email protected]",
3029
"dependencies": {
3130
"@ark/fs": "0.49.0",
3231
"@actions/core": "^1.11.1",

0 commit comments

Comments
 (0)