From 71b538ef27e7f6fd3a904342a53e2765b810d673 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 26 Nov 2024 18:21:26 +0000 Subject: [PATCH] ansible: update www Node.js version (#3967) Update the version of Node.js used on the www server from Node.js 16 (16.20.2) to Node.js 22 (22.11.0). Refs: https://github.com/nodejs/build/issues/3958#issuecomment-2493955665 --- ansible/www-standalone/tasks/base.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/www-standalone/tasks/base.yaml b/ansible/www-standalone/tasks/base.yaml index 80167559f..27e215eab 100644 --- a/ansible/www-standalone/tasks/base.yaml +++ b/ansible/www-standalone/tasks/base.yaml @@ -1,5 +1,5 @@ - name: Base | Add the NodeSource Node.js repo - command: "bash -c 'curl -sL https://deb.nodesource.com/setup_16.x | bash -'" + command: "bash -c 'curl -sL https://deb.nodesource.com/setup_22.x | bash -'" tags: base - name: Base | APT Update