Skip to content

Commit 010172c

Browse files
authored
update electron 25.9.3 (#48)
1 parent 252790b commit 010172c

4 files changed

Lines changed: 21 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ env:
1919
BUILD_DIRECTORY: "build"
2020
DISTRIBUTE_DIRECTORY: "distribute"
2121
RELEASE_BUCKET: "slobs-node-libuiohook"
22-
ELECTRON_VERSION: "v25.8.2"
22+
ELECTRON_VERSION: "v25.9.3"
2323

2424
permissions:
2525
contents: read
@@ -69,6 +69,20 @@ jobs:
6969
runs-on: windows-latest
7070
if: startsWith(github.ref, 'refs/tags/')
7171
steps:
72+
- name: Get the version of aws cli
73+
run: aws --version
74+
shell: powershell
75+
- name: Install specific version of AWS CLI
76+
run: |
77+
$version = "2.13.29"
78+
$zipfile = "AWSCLIV2.zip"
79+
Invoke-WebRequest -OutFile $zipfile "https://awscli.amazonaws.com/AWSCLIV2-$version.msi"
80+
Start-Process msiexec.exe -Wait -ArgumentList "/i $zipfile /qn"
81+
rm $zipfile
82+
shell: pwsh
83+
- name: Get the version of aws cli after install
84+
run: aws --version
85+
shell: powershell
7286
- name: Get build from cache
7387
id: cache-check
7488
uses: actions/cache@v3

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
2222

2323
SET(NODEJS_URL "https://artifacts.electronjs.org/headers/dist" CACHE STRING "Node.JS URL")
2424
SET(NODEJS_NAME "iojs" CACHE STRING "Node.JS Name")
25-
SET(NODEJS_VERSION "v25.8.2" CACHE STRING "Node.JS Version")
25+
SET(NODEJS_VERSION "v25.9.3" CACHE STRING "Node.JS Version")
2626

2727
include(NodeJS)
2828
include(CPack)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"fs": "^0.0.1-security",
1919
"path": "^0.12.7",
2020
"shelljs": "^0.8.5",
21-
"electron": "^25.8.0",
21+
"electron": "^25.9.3",
2222
"underscore":"1.13.4"
2323
},
2424
"dependencies": {

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,10 @@ detect-node@^2.0.4:
175175
resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1"
176176
integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==
177177

178-
electron@^25.8.0:
179-
version "25.8.2"
180-
resolved "https://registry.yarnpkg.com/electron/-/electron-25.8.2.tgz#5e8ea742b68a7d1427bf78902ec40a5b7231a58b"
181-
integrity sha512-AM1ra6b16EQuO1bJtiA8ZiWqqFLLgVfxD56ykiy+EA5C63Hkx8OmIbe+5JAsLiTwRVvBZ4oCAj6wa2qT+iq8ww==
178+
electron@^25.9.3:
179+
version "25.9.3"
180+
resolved "https://registry.yarnpkg.com/electron/-/electron-25.9.3.tgz#cdd53a30fb914adadcfbd34124237fb38b1c07d0"
181+
integrity sha512-dacaHg/PuwVcFRgPDCM5j7UDzqGJWOsbBRdS5wPKLNS/ejPeccIjuNUT1cqcrpvCJKAFW8swHWg9kdizNSEDHQ==
182182
dependencies:
183183
"@electron/get" "^2.0.0"
184184
"@types/node" "^18.11.18"

0 commit comments

Comments
 (0)