diff --git a/automatic/nodejs.install/legal/VERIFICATION.txt b/automatic/nodejs.install/legal/VERIFICATION.txt index 304562c5460..f278083054d 100644 --- a/automatic/nodejs.install/legal/VERIFICATION.txt +++ b/automatic/nodejs.install/legal/VERIFICATION.txt @@ -5,14 +5,14 @@ in verifying that this package's contents are trustworthy. The installer have been downloaded from GitHub and can be verified like this: 1. Download the following installers: - 32-Bit: - 64-Bit: + 32-Bit: + 64-Bit: 2. You can use one of the following methods to obtain the checksum - Use powershell function 'Get-Filehash' - Use chocolatey utility 'checksum.exe' checksum type: sha256 - checksum32: AB3C4CBDD494B44C50B4D4ACCC187DBC5CE64060E9BDC5243AB93C473045D2F8 - checksum64: 5F78DC477560B4FAF32AFCB5F51946D8B9497C0AF076C45129F556CD061E8BE2 + checksum32: 68A5F1198CF76B85CA9EB8819C1E3FA670AF6440534F59D920D267EA3CC0F402 + checksum64: 76102997F9084E1FAA544693AD1DAEEF68394D46AE7E363AD8DF1FA86896133F File 'LICENSE.txt' is obtained from diff --git a/automatic/nodejs.install/nodejs.install.json b/automatic/nodejs.install/nodejs.install.json index ca2d480ae1d..ccf6877ac49 100644 --- a/automatic/nodejs.install/nodejs.install.json +++ b/automatic/nodejs.install/nodejs.install.json @@ -5,7 +5,7 @@ "9": "9.11.2", "10": "10.24.1", "11": "11.15.0", - "12": "12.22.11", + "12": "12.22.12", "5": "5.12.0", "7": "7.10.1", "13": "13.14.0", diff --git a/automatic/nodejs.install/nodejs.install.nuspec b/automatic/nodejs.install/nodejs.install.nuspec index 744baf5b725..82265f06b56 100644 --- a/automatic/nodejs.install/nodejs.install.nuspec +++ b/automatic/nodejs.install/nodejs.install.nuspec @@ -4,7 +4,7 @@ nodejs.install Node JS (Install) - 17.8.0 + 12.22.12 Node.js Foundation chocolatey-community, Rob Reynolds Node JS - Evented I/O for v8 JavaScript. diff --git a/automatic/nodejs.install/tools/chocolateyInstall.ps1 b/automatic/nodejs.install/tools/chocolateyInstall.ps1 index cc6fc4b0688..5caf190bf21 100644 --- a/automatic/nodejs.install/tools/chocolateyInstall.ps1 +++ b/automatic/nodejs.install/tools/chocolateyInstall.ps1 @@ -2,8 +2,8 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition -$filePath32 = "$toolsPath\node-v17.8.0-x86.msi" -$filePath64 = "$toolsPath\node-v17.8.0-x64.msi" +$filePath32 = "$toolsPath\node-v12.22.12-x86.msi" +$filePath64 = "$toolsPath\node-v12.22.12-x64.msi" $installFile = if ((Get-OSArchitectureWidth 64) -and $env:chocolateyForceX86 -ne 'true') { Write-Host "Installing 64 bit version"; $filePath64 } else { Write-Host "Installing 32 bit version"; $filePath32 }