From 130c56f342d03a8e22596cda4ff8eeaff804eb7a Mon Sep 17 00:00:00 2001
From: CrazyMax <crazy-max@users.noreply.github.com>
Date: Mon, 21 Mar 2022 13:50:20 +0100
Subject: [PATCH] Node 16 as default runtime

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
---
 action.yml     | 2 +-
 dev.Dockerfile | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/action.yml b/action.yml
index 1ae1ac3..62c5572 100644
--- a/action.yml
+++ b/action.yml
@@ -54,6 +54,6 @@ outputs:
     description: 'Builder node platforms available (comma separated)'
 
 runs:
-  using: 'node12'
+  using: 'node16'
   main: 'dist/index.js'
   post: 'dist/index.js'
diff --git a/dev.Dockerfile b/dev.Dockerfile
index e90010c..43b44a1 100644
--- a/dev.Dockerfile
+++ b/dev.Dockerfile
@@ -1,6 +1,6 @@
 # syntax=docker/dockerfile:1
 
-ARG NODE_VERSION=12
+ARG NODE_VERSION=16
 ARG DOCKER_VERSION=20.10.13
 ARG BUILDX_VERSION=0.8.1