From ea7d4c9bc5c640b50a6ea94f92d0618e6cc7d256 Mon Sep 17 00:00:00 2001 From: Aleksandr Frolov Date: Thu, 3 Nov 2022 15:55:01 -0400 Subject: [PATCH] Migrate to node 16 due to 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 db73f02..94c9a58 100644 --- a/action.yml +++ b/action.yml @@ -2,7 +2,7 @@ name: 'phplint problem matcher' author: 'Kristof Hamann' description: 'Shows php lint errors as annotation (with file and code line) in GitHub Actions' runs: - using: 'node12' + using: 'node16' main: 'index.js' branding: icon: 'check-square'