From 19802a38705b245c662f22f492c1221e719a9cae Mon Sep 17 00:00:00 2001 From: Erik Huelsmann Date: Sat, 18 Jan 2025 22:20:31 +0100 Subject: [PATCH] Change the cache version to fix dependency resolution --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a8c55b502e..f668fe98d7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -135,9 +135,9 @@ commands: keys: # Find a cache corresponding to this specific package-lock.json checksum # when this file is changed, this key will fail - - v2-yarn-deps-{{ checksum "UI/yarn.lock" }} + - v3-yarn-deps-{{ checksum "UI/yarn.lock" }} # Find the most recently generated cache used from any branch - - v2-yarn-deps- + - v3-yarn-deps- - run: name: Make JS + README @@ -147,7 +147,7 @@ commands: make readme - save_cache: - key: v2-yarn-deps-{{ checksum "UI/yarn.lock" }} + key: v3-yarn-deps-{{ checksum "UI/yarn.lock" }} paths: - UI/node_modules