Files
hello-world-javascript-action/action.yml
Salman Muin Kayser Chishti 8ba0928518 Update Node.js version to 24.x in config files
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.
2025-07-30 14:40:53 +01:00

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