From d0ccaad2f31f4dc4722b68946b849acd0c9fcc09 Mon Sep 17 00:00:00 2001 From: Dewald Viljoen Date: Wed, 19 Apr 2023 10:23:43 +0000 Subject: [PATCH] Update Node image reference to 18.16 --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 829ee3c..e940ebe 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,7 +2,7 @@ pipeline: build: when: event: push - image: node:14.15-alpine + image: node:18.16-alpine commands: - npm ci - npm run build @@ -11,7 +11,7 @@ pipeline: when: branch: master event: push - image: node:14.15-alpine + image: node:18.16-alpine secrets: ['npm_token'] commands: - npm config set '//registry.npmjs.org/:_authToken' $NPM_TOKEN