Commit 1e62339
authored
fix: remove pnpm cache from bump-npm-version (#60)
## Summary
`bump-npm-version.yaml` never runs `pnpm install`, so `setup-node` with
`cache: pnpm` fails at teardown because the cache directory doesn't
exist:
```
Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved.
```
This caused the `Post Setup Node.js` step to fail in
datum-cloud/activity#160.
## Changes
- Remove `pnpm/action-setup` step — not needed when there's no install
- Remove `cache: pnpm` and `cache-dependency-path` from `setup-node` —
same reason
- Remove `lockfile-path` input — only existed to support pnpm caching
The workflow only needs Node.js to read `package.json` (version
resolution) and run `npm version` (bump + tag).
## Test plan
- [ ] Merge and tag `v1.13.1`
- [ ] Re-run the failing workflow in datum-cloud/activity — `Post Setup
Node.js` should no longer fail1 file changed
Lines changed: 0 additions & 15 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | 23 | | |
32 | 24 | | |
33 | 25 | | |
| |||
48 | 40 | | |
49 | 41 | | |
50 | 42 | | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | 43 | | |
57 | 44 | | |
58 | 45 | | |
59 | 46 | | |
60 | | - | |
61 | | - | |
62 | 47 | | |
63 | 48 | | |
64 | 49 | | |
| |||
0 commit comments