From eb21257b5cb2ee011c06881f2aad023ed4fb9c4b Mon Sep 17 00:00:00 2001 From: Fiona Sanggang <2127023+fsanggang@users.noreply.github.com> Date: Fri, 7 Jun 2024 08:29:45 +1200 Subject: [PATCH] Update to Node 20 runner To resolve warnings like: ``` Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: ashley-taylor/junit-report-annotations-action@1.4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. ``` --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 10709aab..e66319f5 100644 --- a/action.yml +++ b/action.yml @@ -24,5 +24,5 @@ inputs: require: true default: "Junit Results" runs: - using: "node16" + using: "node20" main: "index.js"