Skip to content

Commit eefe370

Browse files
cristotodevclaude
andcommitted
fix: upgrade Node.js version in release workflow to meet semantic-release requirements
- Update release workflow from Node.js 18 to Node.js 20 - This resolves the semantic-release error: "node version >=20.8.1 is required" - CI workflow already tests both Node.js 18 and 20 for compatibility - package.json engines field supports ">=18" so this change is backward compatible The release workflow will now use Node.js 20 which meets semantic-release requirements while maintaining compatibility with the existing codebase. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3b4f134 commit eefe370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Node.js
2525
uses: actions/setup-node@v4
2626
with:
27-
node-version: '18'
27+
node-version: '20'
2828
cache: 'npm'
2929

3030
- name: Install dependencies

0 commit comments

Comments
 (0)