From 3057e2469e3f3f4198d812677336379cd366d742 Mon Sep 17 00:00:00 2001 From: Jordan Roberts Date: Thu, 31 Aug 2023 14:46:50 +0100 Subject: [PATCH] Update the config.yml and package.json file to use 20.5.1 This wasn't building in circleci - it didn't look like there was an available tag to use for circleci/node for version 20 so using cimg instead and using the recent upgrade in kafka-search-indexing as an example --- .circleci/config.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1e1926b..e547844 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,7 @@ defaults: &defaults working_directory: ~/repo docker: # the Docker image with Cypress dependencies - - image: circleci/node:20 + - image: cimg/node:20.5.1 auth: username: $DOCKERHUB_USER password: $DOCKERHUB_PASSWORD diff --git a/package.json b/package.json index 5ecc4a5..3f1aa07 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "serve": "^11.3.0" }, "engines": { - "node": ">=20.0.0", + "node": ">=20.5.1", "npm": "^6.13.4", "yarn": "^1.21.1" },