From b3d2fa0a9b60a09a31f162b4f1e4ec375481af4c Mon Sep 17 00:00:00 2001 From: Martijn Vegter Date: Fri, 29 May 2020 13:43:47 +0200 Subject: [PATCH] chore(deps): bump node from 12.16.3 to 12.17.0 --- .github/workflows/bookkeeping.yml | 4 ++-- .github/workflows/openapi.yml | 8 ++++---- Dockerfile | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/bookkeeping.yml b/.github/workflows/bookkeeping.yml index eb5c8b9c45..83fa5d1e42 100644 --- a/.github/workflows/bookkeeping.yml +++ b/.github/workflows/bookkeeping.yml @@ -28,10 +28,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Use Node.js 12.16.3 + - name: Use Node.js 12.17.0 uses: actions/setup-node@v1 with: - node-version: '12.16.3' + node-version: '12.17.0' - name: Installing dependencies run: npm ci - name: Running linter diff --git a/.github/workflows/openapi.yml b/.github/workflows/openapi.yml index 3037f067e7..0aba48ef38 100644 --- a/.github/workflows/openapi.yml +++ b/.github/workflows/openapi.yml @@ -13,10 +13,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Use Node.js 12.16.3 + - name: Use Node.js 12.17.0 uses: actions/setup-node@v1 with: - node-version: '12.16.3' + node-version: '12.17.0' - name: Running validator run: | npm ci @@ -28,10 +28,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Use Node.js 12.16.3 + - name: Use Node.js 12.17.0 uses: actions/setup-node@v1 with: - node-version: '12.16.3' + node-version: '12.17.0' - name: Running validator run: | npx @openapitools/openapi-generator-cli validate -i spec/openapi.yaml diff --git a/Dockerfile b/Dockerfile index 61243b480d..4c5c8b5b8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # # ---- Base ---- -FROM node:12.16.3-alpine as base +FROM node:12.17.0-alpine3.11 as base # Create app directory WORKDIR /usr/src/app