Commit 65dd898
fix(graduate): align Dockerfile + workflow to Node 22 (PR #13 codex P2)
PR #13 codex review (P2): the new `engines.node: ">={{NODE_VERSION}}"`
in package.json.standard.template renders as ">=22", but the graduated
deployment artifacts (Dockerfile multi-stage + GitHub Actions workflow
in graduate.sh.template) still pinned Node 20. In environments with
`engine-strict=true` (common org default), graduated projects' npm ci
or pnpm install would fail purely due to the Node 20 < 22 mismatch.
- Dockerfile FROM lines 53/58/64: node:20-alpine → node:22-alpine
- Deploy workflow line 134: setup-node node-version '20' → '22'
Both numbers are now consistent with the engine floor and with
package.json.standard.template's {{NODE_VERSION}} = 22 placeholder
default.
Refs: PR #13 review by chatgpt-codex-connector (P2)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 0fa83a5 commit 65dd898
1 file changed
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
50 | 50 | | |
51 | 51 | | |
52 | 52 | | |
53 | | - | |
| 53 | + | |
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
58 | | - | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
| |||
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
134 | | - | |
| 134 | + | |
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
| |||
0 commit comments