From 81ce3faa79eef8efd50b37fde64660e43d612356 Mon Sep 17 00:00:00 2001 From: Olivier Benz Date: Thu, 11 Apr 2024 19:45:53 +0200 Subject: [PATCH 1/2] Update Code to 1.88.1 --- lib/vscode | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vscode b/lib/vscode index 5c3e652f63e7..e170252f7626 160000 --- a/lib/vscode +++ b/lib/vscode @@ -1 +1 @@ -Subproject commit 5c3e652f63e798a5ac2f31ffd0d863669328dc4c +Subproject commit e170252f762678dec6ca2cc69aba1570769a5d39 From 63913dedce81611c245fbaf1d84c3100800e7893 Mon Sep 17 00:00:00 2001 From: Asher Date: Mon, 15 Apr 2024 14:01:33 -0800 Subject: [PATCH 2/2] Install node-gyp --- .github/workflows/build.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ea64fda88658..b29eacde89d8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -229,6 +229,11 @@ jobs: with: node-version-file: .node-version + # node-gyp is missing in (at least) npm 9.8.1. + # TODO: Remove once we update to npm>=10? + - name: Install node-gyp + run: npm install -g node-gyp + - name: Fetch dependencies from cache id: cache-node-modules uses: actions/cache@v4