From b61a9ce7bd93239c435d3a7e3d6fe56020bf38c3 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Mon, 21 Mar 2022 11:03:13 +0100 Subject: [PATCH] Node 16 as default runtime Signed-off-by: CrazyMax --- action.yml | 2 +- dev.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 5e837acf..fd47c792 100644 --- a/action.yml +++ b/action.yml @@ -26,6 +26,6 @@ inputs: required: false runs: - using: 'node12' + using: 'node16' main: 'dist/index.js' post: 'dist/index.js' diff --git a/dev.Dockerfile b/dev.Dockerfile index e90010c3..43b44a10 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