From d7faa847f6944c861e746705605e5e8f1de0290f Mon Sep 17 00:00:00 2001 From: paulober <44974737+paulober@users.noreply.github.com> Date: Mon, 9 Sep 2024 16:16:28 +0100 Subject: [PATCH] Fix GitHub Actions VSCE unsupported engine Signed-off-by: paulober <44974737+paulober@users.noreply.github.com> --- .github/workflows/release.yml | 6 +++--- .github/workflows/static.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1666ae30..7cda6c16 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,11 +15,11 @@ jobs: uses: actions/checkout@v4 - name: Enable corepack run: corepack enable - - name: Setup node v18 + - name: Setup node v20 uses: actions/setup-node@v4 with: - # the current node version used included in VS Code - node-version: '18' + # the current node version included in VS Code + node-version: '20' cache: 'yarn' - name: Install Dependencies run: | diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index f3e74302..22a4d2a9 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,11 +33,11 @@ jobs: uses: actions/checkout@v4 - name: Enable corepack run: corepack enable - - name: Setup node v18 + - name: Setup node v20 uses: actions/setup-node@v4 with: - # the current node version use in vscode - node-version: '18' + # the current node version used in vscode + node-version: '20' cache: 'yarn' - name: Set up Python uses: actions/setup-python@v5