From 2950c7dd62f93f5b485cee65f4304be87ae658af Mon Sep 17 00:00:00 2001 From: sawa-zen Date: Wed, 7 May 2025 18:54:39 +0900 Subject: [PATCH 1/2] Update to Node 22 --- cli/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/Dockerfile b/cli/Dockerfile index a211893..e7a765a 100644 --- a/cli/Dockerfile +++ b/cli/Dockerfile @@ -1,6 +1,6 @@ -FROM node:16-alpine +FROM node:22-alpine -LABEL version="1.0.3" +LABEL version="1.0.4" LABEL repository="http://github.com/netlify/actions" LABEL homepage="http://github.com/netlify/actions/netlify" LABEL maintainer="Netlify" From 5bb41523c797dc0e11b21a07acb0949d5d490c48 Mon Sep 17 00:00:00 2001 From: sawa-zen Date: Thu, 8 May 2025 14:52:18 +0900 Subject: [PATCH 2/2] fixup! Update to Node 22 --- cli/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cli/Dockerfile b/cli/Dockerfile index e7a765a..3c01c03 100644 --- a/cli/Dockerfile +++ b/cli/Dockerfile @@ -9,6 +9,9 @@ LABEL "com.github.actions.description"="Wraps the Netlify CLI to enable common N LABEL "com.github.actions.icon"="cloud" LABEL "com.github.actions.color"="blue" +# Install bash and other required dependencies +RUN apk add --no-cache bash + RUN npm install -g netlify-cli COPY entrypoint.sh /entrypoint.sh