From bca394415d910cba92819541dcbb7711d8705411 Mon Sep 17 00:00:00 2001 From: Florian Loitsch Date: Tue, 2 Apr 2024 11:28:19 +0200 Subject: [PATCH] Upgrade to node 20. (#13) Node 16 is deprecated: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 4b7428d..1b941f4 100644 --- a/action.yaml +++ b/action.yaml @@ -12,5 +12,5 @@ inputs: description: The repository with the package. required: false runs: - using: 'node16' + using: 'node20' main: 'index.js'