From 4e0ef099bca9e606ec35369d260e091adbec32ae Mon Sep 17 00:00:00 2001 From: Raphael Bialon Date: Fri, 28 Oct 2022 08:57:59 +0200 Subject: [PATCH] Update action.yml Fixes #8 Use Node v16 instead of v12 as shown in 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 0c5e487..803c2dc 100644 --- a/action.yml +++ b/action.yml @@ -2,7 +2,7 @@ name: 'Flake8 Annotator' author: 'Raphael Bialon' description: 'Annotate PRs with flake8 errors and warnings from Github checks output' runs: - using: 'node12' + using: 'node16' main: 'index.js' branding: icon: 'check-circle'