Skip to content

Commit

Permalink
update known information for Node.js to version 20.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Oct 3, 2024
1 parent ab9e8f2 commit 40a4cb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions updater/software/NodeJS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public NodeJS(bool autoGetNewer)
/// details about the software.</returns>
public override AvailableSoftware knownInfo()
{
const string version = "20.17.0";
const string version = "20.18.0";
var signature = new Signature(publisherX509, certificateExpiration);
return new AvailableSoftware(
"Node.js",
Expand All @@ -73,13 +73,13 @@ public override AvailableSoftware knownInfo()
new InstallInfoMsi(
"https://nodejs.org/download/release/v" + version + "/node-v" + version + "-x86.msi",
HashAlgorithm.SHA256,
"9875a94ac32b6306f63fbed534d64b095c15f3d252e3adcc5b34367ffe61c7e6",
"9ae3aaeced931fbd874c6488cc4960611691baa9c11e0b84c0ed9226ccc2d0cb",
signature,
"/qn /norestart"),
new InstallInfoMsi(
"https://nodejs.org/download/release/v" + version + "/node-v" + version + "-x64.msi",
HashAlgorithm.SHA256,
"8ba4cf21d15bf47cf36d77a41058d12f8a7b4d333164618f3b2e6a52a1f226d5",
"93d1d30341d7d38b7a8f3ab0fa3be1f9e6436b90338b2bd8b8af4e80d00bd036",
signature,
"/qn /norestart")
);
Expand Down

0 comments on commit 40a4cb8

Please sign in to comment.