From d26fb6fefd95687a6a1337b5470de39b048fd8af Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 3 Apr 2020 08:23:05 -0400
Subject: [PATCH] Bust the cache key

Our dependencies changed a while ago but we probably kept using the same cache
so we never updated it with the builds of the new dependencies.
---
 .circleci/config.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index ae156c7..7949f83 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -106,8 +106,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.
-            - zkapauthorizer-nix-store-v2-{{ checksum "nixpkgs.rev" }}
-            - zkapauthorizer-nix-store-v2-
+            - zkapauthorizer-nix-store-v3-{{ checksum "nixpkgs.rev" }}
+            - zkapauthorizer-nix-store-v3-
 
       - run:
           name: "Run Test Suite"
@@ -136,7 +136,7 @@ jobs:
 
       - save_cache:
           name: "Cache Nix Store Paths"
-          key: zkapauthorizer-nix-store-v2-{{ checksum "nixpkgs.rev" }}
+          key: zkapauthorizer-nix-store-v3-{{ checksum "nixpkgs.rev" }}
           paths:
             - "/nix"
 
-- 
GitLab