From f0269f951b847ed09f7d54c41a02d2480d33fbad Mon Sep 17 00:00:00 2001 From: Vladimir Date: Fri, 27 Oct 2023 12:49:39 -0700 Subject: [PATCH] update electron 25.9.3 (#28) --- .github/workflows/build.yml | 16 +++++++++++++++- CMakeLists.txt | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 06b6a82..dfed77d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ env: BUILD_DIRECTORY: "build" DISTRIBUTE_DIRECTORY: "distribute" RELEASE_BUCKET: "slobs-node-fontinfo" - ELECTRON_VERSION: "v25.8.2" + ELECTRON_VERSION: "v25.9.3" permissions: contents: read @@ -69,6 +69,20 @@ jobs: runs-on: windows-latest if: startsWith(github.ref, 'refs/tags/') steps: + - name: Get the version of aws cli + run: aws --version + shell: powershell + - name: Install specific version of AWS CLI + run: | + $version = "2.13.29" + $zipfile = "AWSCLIV2.zip" + Invoke-WebRequest -OutFile $zipfile "https://awscli.amazonaws.com/AWSCLIV2-$version.msi" + Start-Process msiexec.exe -Wait -ArgumentList "/i $zipfile /qn" + rm $zipfile + shell: pwsh + - name: Get the version of aws cli after install + run: aws --version + shell: powershell - name: Get build from cache id: cache-check uses: actions/cache@v3 diff --git a/CMakeLists.txt b/CMakeLists.txt index 3c21025..f1fde6f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ set(freetype2_INSTALL ${CMAKE_BINARY_DIR}/freetype2) SET(NODEJS_URL "https://artifacts.electronjs.org/headers/dist" CACHE STRING "Node.JS URL") SET(NODEJS_NAME "iojs" CACHE STRING "Node.JS Name") -SET(NODEJS_VERSION "v25.8.2" CACHE STRING "Node.JS Version") +SET(NODEJS_VERSION "v25.9.3" CACHE STRING "Node.JS Version") include(NodeJS) include(ExternalProject)