From 5d259c66b1a041c1f8f934fb0e75bfaed72edd03 Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Sat, 9 Sep 2023 17:01:24 +0530 Subject: [PATCH] Bump node version to 20 in action.yml Node 16 is EOL on 2023-09-11 so we update it to Node 20 that was added in the actions/runner in v2.308.0 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index af91912b..357b9c13 100644 --- a/action.yml +++ b/action.yml @@ -31,5 +31,5 @@ outputs: php-version: description: 'PHP version in semver format' runs: - using: 'node16' + using: 'node20' main: 'dist/index.js'