mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-12-15 14:37:28 +00:00
Bump Node.js version from 20.18.1 to 24.4.0 in .node-version and update GitHub Action to use node24 in action.yml for compatibility with the latest Node.js features.
20 lines
342 B
YAML
20 lines
342 B
YAML
name: Hello, World!
|
|
description: Greet someone and record the time
|
|
author: GitHub Actions
|
|
|
|
# Define your inputs here.
|
|
inputs:
|
|
who-to-greet:
|
|
description: Who to greet
|
|
required: true
|
|
default: World
|
|
|
|
# Define your outputs here.
|
|
outputs:
|
|
time:
|
|
description: The time we greeted you
|
|
|
|
runs:
|
|
using: node24
|
|
main: dist/index.js
|