From 4d58d8865d856796244d815fc3f375c93555405d Mon Sep 17 00:00:00 2001 From: staticsafe Date: Sat, 22 Aug 2020 19:26:13 -0400 Subject: [PATCH] we should install Node 12.x now --- roles/common/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index 63a129c..f78f7bd 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -8,8 +8,8 @@ - name: Add Nodesource apt repositories apt_repository: repo={{ item }} state=present with_items: - - "deb https://deb.nodesource.com/node_8.x {{ ansible_distribution_release }} main" - - "deb-src https://deb.nodesource.com/node_8.x {{ ansible_distribution_release }} main" + - "deb https://deb.nodesource.com/node_12.x {{ ansible_distribution_release }} main" + - "deb-src https://deb.nodesource.com/node_12.x {{ ansible_distribution_release }} main" - name: Add Yarnpkg apt key apt_key: url="https://dl.yarnpkg.com/debian/pubkey.gpg" state=present - name: Add Yarnpkg apt repository