From c13e80680ac1df6b65afb7999c28bdcf30b9128f Mon Sep 17 00:00:00 2001 From: Nick Randall Date: Tue, 30 Jan 2024 14:45:29 -0700 Subject: [PATCH] Update action.yml Node 16 is being deprecated from Github actions and they recommend using node 20. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 4a16122..34c3db9 100644 --- a/action.yml +++ b/action.yml @@ -15,5 +15,5 @@ inputs: description: "The GitHub token for your repo" required: true runs: - using: node16 + using: node20 main: dist/index.js