From 43bb4e669776b52c5d8ace15b78b0a55b41864aa Mon Sep 17 00:00:00 2001 From: Nick McCurdy Date: Sat, 24 Sep 2022 11:12:06 -0400 Subject: [PATCH] Use Node 16 (#1221) https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 6bc50baa8..5cb3af676 100644 --- a/action.yml +++ b/action.yml @@ -2,7 +2,7 @@ name: 'Deploy to GitHub Pages' description: 'This action will handle the deployment process of your project to GitHub Pages.' author: 'James Ives ' runs: - using: 'node12' + using: 'node16' main: 'lib/main.js' branding: icon: 'git-commit'