From fabd239981f4cf6edd188bea3be6d058b4214ad8 Mon Sep 17 00:00:00 2001 From: Andreas Mosti Date: Thu, 27 Oct 2022 07:44:07 +0200 Subject: [PATCH] Updating node version to 16 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 👋 Github as depricated the use of `node12`, [as explained here](https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/) så this PR updates the runtime from `node12` to `node16`. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b5cc790..3288ad4 100644 --- a/action.yml +++ b/action.yml @@ -16,5 +16,5 @@ outputs: capitalized: description: The input string, with any alphabetical characters lowercase, except for the first character, which is uppercased runs: - using: node12 + using: node16 main: index.js