From a8b4afe8e4d40b194a651058ce8771a9ba716273 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 14 Jan 2022 13:56:46 -0500
Subject: [PATCH] bust the circleci cache

---
 .circleci/config.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 9cbf0c9..65a5f37 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -74,8 +74,8 @@ jobs:
             # If nixpkgs changes then potentially a lot of cached packages for
             # the base system will be invalidated so we may as well drop them
             # and make a new cache with the new packages.
-            - paymentserver-nix-store-v6-{{ checksum "nix/sources.json" }}
-            - paymentserver-nix-store-v6-
+            - paymentserver-nix-store-v7-{{ checksum "nix/sources.json" }}
+            - paymentserver-nix-store-v7-
 
       - run:
           name: "Building with Nix"
@@ -104,7 +104,7 @@ jobs:
 
       - save_cache:
           name: "Cache Nix Store Paths"
-          key: paymentserver-nix-store-v6-{{ checksum "nix/sources.json" }}
+          key: paymentserver-nix-store-v7-{{ checksum "nix/sources.json" }}
           paths:
             - "/nix"
 
-- 
GitLab