From 18ba72a8f3638255e9bd9ae72ddd276164f8d49b Mon Sep 17 00:00:00 2001 From: Bret Comnes Date: Thu, 4 Apr 2024 11:31:59 -0700 Subject: [PATCH] Update action runtime to node20 BREAKING CHANGE: run using node20 action runtime. Closes https://github.com/bcomnes/deploy-to-neocities/issues/174 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 6ebc361..578a5a2 100644 --- a/action.yml +++ b/action.yml @@ -19,5 +19,5 @@ inputs: description: A glob string that prevents matched files from ever being deleted. required: false runs: - using: 'node16' + using: 'node20' main: 'dist/index.js'