From 366d1bbc2d92ce236b20d709a4cc5de38ab2bc3c Mon Sep 17 00:00:00 2001
From: techknowlogick <matti@mdranta.net>
Date: Sat, 1 Feb 2020 10:25:22 +0100
Subject: [PATCH] Use Node 12 (most recent LTS version)

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 70727fc15..57294d72b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,7 +20,7 @@ stages:
 review_front:
   interruptible: true
   stage: review
-  image: node:11
+  image: node:12-buster
   when: manual
   allow_failure: true
   variables:
@@ -148,7 +148,7 @@ test_api:
 test_front:
   interruptible: true
   stage: test
-  image: node:11
+  image: node:12-buster
   before_script:
     - cd front
   only:
@@ -170,7 +170,7 @@ test_front:
 
 build_front:
   stage: build
-  image: node:11
+  image: node:12-buster
   before_script:
     - curl -L -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
     - chmod +x /usr/local/bin/jq
-- 
GitLab