From dd04921e4e36291d3bd9ccefaac3d99f5e2021c1 Mon Sep 17 00:00:00 2001 From: Max Kraev Date: Wed, 27 May 2026 11:31:01 +0100 Subject: [PATCH] update node to 24 --- nodejs/playbook.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/nodejs/playbook.yaml b/nodejs/playbook.yaml index 8d02776..cd14f23 100644 --- a/nodejs/playbook.yaml +++ b/nodejs/playbook.yaml @@ -3,7 +3,7 @@ become: true tasks: - name: Add nodesource repository - shell: curl -sL https://deb.nodesource.com/setup_18.x | bash - + shell: curl -sL https://deb.nodesource.com/setup_24.x | bash - - name: Add APT key apt_key: @@ -14,12 +14,6 @@ apt_repository: repo: deb https://dl.yarnpkg.com/debian/ stable main state: present - - - name: Create symlink for nodejs - ansible.builtin.file: - src: /usr/bin/node - dest: /usr/bin/nodejs - state: link - apt: update_cache=yes - apt: name=nodejs state=present