From 6c3a5b163a3c9795c627c28199f0a016fba0fb24 Mon Sep 17 00:00:00 2001 From: Salman Chishti Date: Thu, 31 Jul 2025 12:12:22 +0100 Subject: [PATCH] Add node24 to GitHub Action runtime options Added 'node24' to the enum of supported runtimes. --- src/schemas/json/github-action.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schemas/json/github-action.json b/src/schemas/json/github-action.json index 10e442c4cc3..bd4738a9bcd 100644 --- a/src/schemas/json/github-action.json +++ b/src/schemas/json/github-action.json @@ -32,7 +32,7 @@ "using": { "$comment": "https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runsusing", "description": "The application used to execute the code specified in `main`.", - "enum": ["node12", "node16", "node20"] + "enum": ["node12", "node16", "node20", "node24"] }, "main": { "$comment": "https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runsmain",