Skip to content

Commit

Permalink
chore: update bundled NodeJS to v22.9.0 (#6521)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev authored Oct 8, 2024
1 parent c48c848 commit 44f2740
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .circleci/continue-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ parameters:
docker_layer_caching: true

runner-image: &runner-image
image: gardendev/circleci-runner:22.6.0-0@sha256:31ca9ad41fef9c75a128b2e262cc0440aeccbb5649d33e3d7765b942c6734551
image: gardendev/circleci-runner:22.9.0-0@sha256:758f4be031cb663fdaa62919972bd34be72781cebb11c37ecff2f13741f87d7f

# Configuration for our node jobs
docker-runner: &docker-runner
Expand Down Expand Up @@ -100,7 +100,7 @@ commands:
node_version:
description: The node version to use
type: string
default: v22.6.0
default: v22.9.0
steps:
# See also https://github.com/CircleCI-Public/node-orb/issues/158#issuecomment-1461095390
- run: rm -rf ~/.npm ~/.fnm
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.6
22.9
14 changes: 7 additions & 7 deletions cli/src/build-pkg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function getRustTarget(spec: TargetSpec): string {
return target
}

export const nodeVersion = "22.6.0"
export const nodeVersion = "22.9.0"
export const nodeTargets: {
[name: string]: { spec: TargetSpec; handler: (p: TargetHandlerParams) => Promise<void> }
} = {
Expand All @@ -86,7 +86,7 @@ export const nodeTargets: {
node: nodeVersion,
nodeBinaryPlatform: "darwin",
url: `https://nodejs.org/dist/v${nodeVersion}/node-v${nodeVersion}-darwin-x64.tar.gz`,
checksum: "8766c5968ca22d20fc6237c54c7c5d12ef12e15940d6119a79144ccb163ea737",
checksum: "2d68692990a38078e1895763ff68f8ef0105299134e7f5654ddafaac69d4fa59",
},
handler: pkgMacos,
},
Expand All @@ -97,7 +97,7 @@ export const nodeTargets: {
node: nodeVersion,
nodeBinaryPlatform: "darwin",
url: `https://nodejs.org/dist/v${nodeVersion}/node-v${nodeVersion}-darwin-arm64.tar.gz`,
checksum: "9ea60766807cd3c3a3ad6ad419f98918d634a60fe8dea5b9c07507ed0f176d4c",
checksum: "7d62217f64491524db6bcfb059049d64fd6a9adcae52565ed54aaad365a55afd",
},
handler: pkgMacos,
},
Expand All @@ -108,7 +108,7 @@ export const nodeTargets: {
node: nodeVersion,
nodeBinaryPlatform: "linux",
url: `https://nodejs.org/dist/v${nodeVersion}/node-v${nodeVersion}-linux-x64.tar.gz`,
checksum: "f2f4ccbcbc0a443e5fadebd1149a22f96087ec09cef52ff343a15ee835206d96",
checksum: "1efa7ba49fbb80b2110ebed50224705ca23b1edbdd1e3210e293faa006540488",
},
handler: pkgLinux,
},
Expand All @@ -119,7 +119,7 @@ export const nodeTargets: {
node: nodeVersion,
nodeBinaryPlatform: "linux",
url: `https://nodejs.org/dist/v${nodeVersion}/node-v${nodeVersion}-linux-arm64.tar.gz`,
checksum: "c6c7ee62de3637401c15df9a022afaa248d236d59ceca8c188944cf97d0be372",
checksum: "4497750edeba40349fae55c058103a7c3c606adb209839c087739d2184c25d8a",
},
handler: pkgLinux,
},
Expand All @@ -131,7 +131,7 @@ export const nodeTargets: {
nodeBinaryPlatform: "linux",
// Alpine builds live in https://unofficial-builds.nodejs.org/download/release/
url: `https://unofficial-builds.nodejs.org/download/release/v${nodeVersion}/node-v${nodeVersion}-linux-x64-musl.tar.gz`,
checksum: "cce2f0b673b55c30693176baa3981d51282c8ae932d8ab61b836a1cd8332423d",
checksum: "5e9a7fabf31795959e23f9fb150991129e0192366a3f59960de4fe410a5ea803",
},
handler: pkgAlpine,
},
Expand All @@ -142,7 +142,7 @@ export const nodeTargets: {
node: nodeVersion,
nodeBinaryPlatform: "win32",
url: `https://nodejs.org/dist/v${nodeVersion}/node-v${nodeVersion}-win-x64.zip`,
checksum: "1fdb0b8e59c98157ba927d51ef7eb050f9459beddc64ebc5a8897b90fd1f46f6",
checksum: "8af226c0aa71fefe5228e881f4b5c5d90a8b41c290b96f44f56990d8dc3fac1c",
},
handler: pkgWindows,
},
Expand Down

0 comments on commit 44f2740

Please sign in to comment.