Skip to content

Commit f2ad272

Browse files
bfirshclaude
andcommitted
Update GitHub Actions to Node.js 22.x and latest action versions
- Update Node.js version from 12.x to 22.x (current LTS) - Update actions/checkout from v2 to v4 - Update actions/setup-node from v2 to v4 - Fixes npm compatibility issues with modern package-lock.json 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e33d425 commit f2ad272

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- name: Use Node.js
13-
uses: actions/setup-node@v2
13+
uses: actions/setup-node@v4
1414
with:
15-
node-version: '12.x'
15+
node-version: '22.x'
1616
- run: npm ci
1717
- run: npm run build
1818
- run: npm test

0 commit comments

Comments
 (0)