From 86f0ea071595df748a8db294db38d9cb18bd1a47 Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Fri, 29 Jul 2022 10:42:47 +0200 Subject: [PATCH] build: pin node version to >=13 (#1900) (#1901) This commit pins the node version to >=13 since node 12 is now end of life (see https://vercel.com/changelog/node-js-12-is-being-deprecated). --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index ed7a9ae..e2f1355 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,9 @@ }, "author": "Anurag Hazra", "license": "MIT", + "engines": { + "node": ">=13" + }, "devDependencies": { "@actions/core": "^1.2.4", "@actions/github": "^4.0.0",