From 6853090cd99ab382c4830a1ae8966b5a906315b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Roche?= Date: Fri, 22 Dec 2023 15:34:55 +0100 Subject: [PATCH] Use nodejs 20 (#509) Node 16 has reached its end of life More details here: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- CHANGELOG.md | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d50d06..cc9e095 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## Unreleased -* Add changes here +* update runtime to node20 for action ## 2.7.4 (October 26, 2023) diff --git a/action.yml b/action.yml index 84d314d..60bb1a1 100644 --- a/action.yml +++ b/action.yml @@ -90,7 +90,7 @@ inputs: description: 'The encoding type of the secret to decode. If not specified, the secret will not be decoded. Supported values: base64, hex, utf8' required: false runs: - using: 'node16' + using: 'node20' main: 'dist/index.js' branding: icon: 'unlock'