From 54385656cb30ae0899837eb0165771e493f83aa3 Mon Sep 17 00:00:00 2001 From: Martin Migasiewicz <71527391+martinmigasiewicz-tomtom@users.noreply.github.com> Date: Thu, 13 Oct 2022 10:28:33 +0200 Subject: [PATCH] fix: update GitHub Action to run on nodejs16. See https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ for more details. --- 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"