Skip to content

Commit 310f1f9

Browse files
authored
Update Docker base image to node 18 (#291)
1 parent 704cb2e commit 310f1f9

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/action/entrypoint.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
22
output=$(/cli/bin/run $*); status=$?;
3-
echo "::set-output name=response::
4-
$output"
5-
exit $status
3+
echo "response=$output" >> $GITHUB_OUTPUT
4+
exit $status

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:12-alpine
1+
FROM node:18-alpine
22
WORKDIR /cli
33
COPY package*.json ./
44
COPY ./bin ./bin

0 commit comments

Comments
 (0)