From b3c3b40b95c18bfa5363f6821764398c7149ad04 Mon Sep 17 00:00:00 2001 From: David Anson Date: Sat, 22 Jan 2022 16:09:20 -0800 Subject: [PATCH] Update Action configuration to use Node 16. --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index af2f723..1055839 100644 --- a/action.yml +++ b/action.yml @@ -2,7 +2,7 @@ name: 'markdownlint-cli2-action' author: 'David Anson' description: 'A GitHub Action to run the markdownlint-cli2 tool for linting Markdown/CommonMark files with the markdownlint library' branding: - icon: 'check-square' + icon: 'check-square' color: 'orange' inputs: globs: @@ -10,5 +10,5 @@ inputs: default: '*.{md,markdown}' required: false runs: - using: 'node12' + using: 'node16' main: 'dist/index.js'