From 0b131e91c14721f361597b1fa40cd4bf17355712 Mon Sep 17 00:00:00 2001 From: Deluan Date: Fri, 6 Mar 2020 10:57:00 -0500 Subject: [PATCH] chore: upgrade to NodeJS 13.10 --- .github/workflows/release.yml | 2 +- .nvmrc | 2 +- Dockerfile | 2 +- Makefile | 2 +- README.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94efcd4da..5de15ac75 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v1 with: - node-version: 13 + node-version: 13.10 - name: Build UI run: | cd ui diff --git a/.nvmrc b/.nvmrc index 4cb2325b0..a983b8e11 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v13.9.0 +v13.10.1 diff --git a/Dockerfile b/Dockerfile index 62020534b..7bcac4512 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ##################################################### ### Build UI bundles -FROM node:13.8-alpine AS jsbuilder +FROM node:13.10-alpine AS jsbuilder WORKDIR /src COPY ui/package.json ui/package-lock.json ./ RUN npm ci diff --git a/Makefile b/Makefile index 55b76b0c8..d8673bdbe 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ GO_VERSION=1.14 -NODE_VERSION=v13.9.0 +NODE_VERSION=v13.10.1 GIT_SHA=$(shell git rev-parse --short HEAD) diff --git a/README.md b/README.md index 657cd2168..fff050aee 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ To get the cutting-edge, latest version from master, use the image `deluan/navid ### Build from source -You will need to install [Go 1.14](https://golang.org/dl/) and [Node 13.9.0](http://nodejs.org). +You will need to install [Go 1.14](https://golang.org/dl/) and [Node 13.10.1](http://nodejs.org). You'll also need [ffmpeg](https://ffmpeg.org) installed in your system. The setup is very strict, and the steps bellow only work with these specific versions (enforced in the Makefile)