From efed8e06a3f55062ddf305e999b917d467d2ac15 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Fri, 22 Nov 2024 15:21:35 +0000 Subject: [PATCH] ansible: update www Node.js version 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). --- 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