From 33b43dd8d5a91f3e1f3ec841d987312bfefdd2e3 Mon Sep 17 00:00:00 2001 From: Chris Griffing Date: Thu, 20 May 2021 15:21:02 -0700 Subject: [PATCH] fix: switch to composite flow --- action.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index f0b19bf..fda91fb 100755 --- a/action.yml +++ b/action.yml @@ -20,5 +20,9 @@ inputs: required: false default: "" runs: - using: "docker" - image: "Dockerfile" + using: composite + steps: + - uses: actions/setup-node@v2 + with: + node-version: '14' + - run: "node index.js"