Bump node version to 6.15.1

This commit is contained in:
Christopher Hoskin
2018-12-27 08:23:18 +00:00
parent d5abf7a40c
commit 9e7f84cd0d
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
6.9.5
6.15.1

View File

@@ -15,7 +15,7 @@ pipeline {
stage('Install') {
agent {
docker {
image 'node:6.9.5'
image 'node:6.15.1'
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
reuseNode true
}
@@ -33,7 +33,7 @@ pipeline {
stage('Compile and Test') {
agent {
docker {
image 'node:6.9.5'
image 'node:6.15.1'
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
reuseNode true
}