Skip to content

Commit

Permalink
Update Docker base image to node 18 (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
barryadk authored Apr 6, 2023
1 parent 704cb2e commit 310f1f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/action/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/sh
output=$(/cli/bin/run $*); status=$?;
echo "::set-output name=response::
$output"
exit $status
echo "response=$output" >> $GITHUB_OUTPUT
exit $status
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12-alpine
FROM node:18-alpine
WORKDIR /cli
COPY package*.json ./
COPY ./bin ./bin
Expand Down

0 comments on commit 310f1f9

Please sign in to comment.