From 1b122593d26ea7e9996a4f24f1f4191814e98b6a Mon Sep 17 00:00:00 2001 From: Chris O'Donnell Date: Fri, 24 Apr 2020 17:22:31 -0400 Subject: [PATCH] feat: bump to node 12.x Not really a breaking change, as this action runs in a docker container --- .github/workflows/ci-cd.yml | 3 +-- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 12eefb8..fe99409 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -11,11 +11,10 @@ jobs: - uses: actions/setup-node@v1 with: - node-version: 10.x + node-version: 12.x - run: npm ci - run: npm run lint - - run: npm run lint:md release: needs: validate diff --git a/Dockerfile b/Dockerfile index b7b2864..20e6145 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:10 +FROM node:12 # nice clean home for our action files RUN mkdir /action