From 76fd0a52d176fa9c6a31d32c139c814ebe069153 Mon Sep 17 00:00:00 2001 From: Vijay Aravamudhan Date: Thu, 28 Oct 2021 18:33:21 +0530 Subject: upgrade 'node-gyp' to '8.3.0' (#2159) Co-authored-by: Markus Hatvan --- .github/workflows/dependency-updates.yml | 2 +- .github/workflows/ferdi-builds.yml | 6 +++--- CONTRIBUTING.md | 2 +- Dockerfile | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dependency-updates.yml b/.github/workflows/dependency-updates.yml index 81a8ad556..9c4bcc1bb 100644 --- a/.github/workflows/dependency-updates.yml +++ b/.github/workflows/dependency-updates.yml @@ -59,7 +59,7 @@ jobs: - name: Uninstall locally and reinstall global npm modules run: | npm uninstall node-gyp - npm ls -g node-gyp@8.2.0 || npm i -g node-gyp@8.2.0 + npm ls -g node-gyp@8.3.0 || npm i -g node-gyp@8.3.0 - name: Install node dependencies run: npm i - name: Update submodules diff --git a/.github/workflows/ferdi-builds.yml b/.github/workflows/ferdi-builds.yml index e00893c19..b3d7e61fb 100644 --- a/.github/workflows/ferdi-builds.yml +++ b/.github/workflows/ferdi-builds.yml @@ -156,7 +156,7 @@ jobs: - name: Uninstall locally and reinstall global npm modules run: | npm uninstall node-gyp - npm ls -g node-gyp@8.2.0 || npm i -g node-gyp@8.2.0 + npm ls -g node-gyp@8.3.0 || npm i -g node-gyp@8.3.0 - name: Install node dependencies run: npm i - name: Package recipes @@ -259,7 +259,7 @@ jobs: - name: Uninstall locally and reinstall global npm modules run: | npm uninstall node-gyp - npm ls -g node-gyp@8.2.0 || npm i -g node-gyp@8.2.0 + npm ls -g node-gyp@8.3.0 || npm i -g node-gyp@8.3.0 - name: Install node dependencies run: npm i - name: Figure out used package.json version @@ -383,7 +383,7 @@ jobs: - name: Uninstall locally and reinstall global npm modules run: | npm uninstall node-gyp - npm ls -g node-gyp@8.2.0 || npm i -g node-gyp@8.2.0 + npm ls -g node-gyp@8.3.0 || npm i -g node-gyp@8.3.0 shell: bash - name: Install node dependencies run: npm i diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 65c9a30ca..3d4efb98b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -100,7 +100,7 @@ npm i -g windows-build-tools --vs2015 We need `node-gyp` to be able to compile any native dependencies ```bash -npm ls -g node-gyp@8.2.0 || npm i -g node-gyp@8.2.0 +npm ls -g node-gyp@8.3.0 || npm i -g node-gyp@8.3.0 ``` ### Clone repository with submodule diff --git a/Dockerfile b/Dockerfile index 13551dad3..39d5cefda 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update -y \ WORKDIR /usr/src/ferdi RUN npm i -g pnpm@6.19.0 \ - && npm ls -g node-gyp@8.2.0 || npm i -g node-gyp@8.2.0 + && npm ls -g node-gyp@8.3.0 || npm i -g node-gyp@8.3.0 COPY package*.json . -- cgit v1.2.3-54-g00ecf