From 99888f9337685702785a52b9ee9903d8f1cab1e2 Mon Sep 17 00:00:00 2001 From: Alexander Kantchev Date: Thu, 30 May 2024 17:44:28 +0300 Subject: [PATCH] [Task N/A] Updated build file. Signed-off-by: Alexander Kantchev --- .github/workflows/draft-release.yml | 10 +++++----- .github/workflows/publish.yml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 89c2e906..db8e5ac8 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -6,7 +6,7 @@ on: jobs: build_release: name: Build and Release - runs-on: macos-latest + runs-on: ubuntu-latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: @@ -17,13 +17,13 @@ jobs: - name: echo github.ref run: echo ${{ github.ref }} - - name: Use Node.js 16.x + - name: Use Node.js 19.6.0 uses: actions/setup-node@v2 with: - node-version: 16.x + node-version: 19.6.0 - - name: Use NPM 8 - run: npm install -g npm@8.3.1 # lock to 8.3.1 until actions/setup-node#411 and npm/cli#4341 are fixed + - name: Use NPM 9.4.0 + run: npm install -g npm@9.4.0 # lock to 9.4.0 until actions/setup-node#411 and npm/cli#4341 are fixed - name: Install sha256sum and minisign run: | diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7fe9e17a..15083d88 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,12 +5,12 @@ on: jobs: publish: name: Publish to Visual Studio Marketplace and GitHub Packages - runs-on: macos-latest + runs-on: ubuntu-latest steps: - - name: Use Node.js 16.x + - name: Use Node.js 19.6.0 uses: actions/setup-node@v2 with: - node-version: 16.x + node-version: 19.6.0 - name: Install vsce run: npm install -g vsce