From 0a13b2ef88adbf59601ac6675a187139225b8110 Mon Sep 17 00:00:00 2001 From: Martin Migasiewicz <616250+martinm82@users.noreply.github.com> Date: Mon, 17 Oct 2022 19:46:42 +0200 Subject: [PATCH] fix: update GitHub Action to run on nodejs16. (#198) See https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ for more details. Co-authored-by: Martin Migasiewicz <71527391+martinmigasiewicz-tomtom@users.noreply.github.com> --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index dcb631fe..1fb06507 100644 --- a/action.yml +++ b/action.yml @@ -1,7 +1,7 @@ name: "Merge pull requests (automerge-action)" description: "Automatically merge pull requests that are ready" runs: - using: "node12" + using: "node16" main: "dist/index.js" branding: icon: "git-pull-request"