mirror of
https://github.com/actions/github-script.git
synced 2025-12-08 08:06:23 +00:00
Bump Node.js version requirement from 20.x to 24.x in action configuration and package files. Update @types/node and undici-types dependencies to match Node 24 compatibility.
13 lines
248 B
YAML
13 lines
248 B
YAML
name: 'Install dependencies'
|
|
description: 'Set up node and install dependencies'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '24.x'
|
|
cache: npm
|
|
|
|
- run: npm ci
|
|
shell: bash
|