From 569eaaff2fa52679f1525745b3bb65867374817a Mon Sep 17 00:00:00 2001 From: Matthew Somerville Date: Wed, 22 Aug 2018 09:17:54 +0100 Subject: [PATCH] Upgrade to install node 8. --- 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 503c96f..3dca3a8 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -20,8 +20,8 @@ - name: Add Nodesource apt repositories apt_repository: repo={{ item }} state=present with_items: - - "deb https://deb.nodesource.com/node_6.x {{ ansible_distribution_release }} main" - - "deb-src https://deb.nodesource.com/node_6.x {{ ansible_distribution_release }} main" + - "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" - name: Add Yarnpkg apt key apt_key: url="https://dl.yarnpkg.com/debian/pubkey.gpg" state=present - name: Add Yarnpkg apt repository