From 34ea557550c84ea665cae5c61c3b084feac7e042 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Thu, 26 May 2022 10:52:02 +0200 Subject: [PATCH] Node 16 as default runtime (#136) Co-authored-by: CrazyMax --- action.yml | 2 +- dev.Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 64d6d494..74b0e375 100644 --- a/action.yml +++ b/action.yml @@ -56,6 +56,6 @@ outputs: description: 'Email address associated with the GPG key' runs: - using: 'node12' + using: 'node16' main: 'dist/index.js' post: 'dist/index.js' diff --git a/dev.Dockerfile b/dev.Dockerfile index ab57f49b..8482bb70 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -1,6 +1,6 @@ -# syntax=docker/dockerfile:1.4 +# syntax=docker/dockerfile:1 -ARG NODE_VERSION=12 +ARG NODE_VERSION=16 FROM node:${NODE_VERSION}-alpine AS base RUN apk add --no-cache cpio findutils git