From 4b2abac40db5146a890687454a3f23e01413e809 Mon Sep 17 00:00:00 2001 From: YOCKOW Date: Tue, 30 Jan 2024 12:49:35 +0900 Subject: [PATCH] Use Node 20. Node 16 has reached its end of life: 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 58a9616..b3f05ea 100644 --- a/action.yml +++ b/action.yml @@ -12,5 +12,5 @@ inputs: required: false default: '.' runs: - using: 'node16' + using: 'node20' main: './lib/main.js'