Skip to content

Commit

Permalink
Merge pull request #288 from FundingCircle/fix-repo-cache-name
Browse files Browse the repository at this point in the history
fix(ci): add -repo to repo cache names to not match with deps cache
  • Loading branch information
minimal committed Apr 14, 2021
2 parents a9662e7 + 6d47fd5 commit d23a069
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ version: 2

references:
repo_cache_key: &repo_cache_key
v1-jackdaw-{{ .Branch }}-{{ .Revision }}
v1-jackdaw-repo-{{ .Branch }}-{{ .Revision }}

repo_cache_backup_1: &repo_cache_backup_1
v1-jackdaw-{{ .Branch }}
v1-jackdaw-repo-{{ .Branch }}

repo_cache_backup_2: &repo_cache_backup_2
v1-jackdaw
v1-jackdaw-repo

restore_repo: &restore_repo
restore_cache:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- *restore_repo
- checkout
- save_cache:
key: v1-jackdaw-{{ .Branch }}-{{ .Revision }}
key: v1-jackdaw-repo-{{ .Branch }}-{{ .Revision }}
paths:
- .
checkout_tags:
Expand All @@ -96,7 +96,7 @@ jobs:
git fetch --force origin "refs/tags/${CIRCLE_TAG}:refs/tags/${CIRCLE_TAG}"
- checkout
- save_cache:
key: v1-jackdaw-{{ .Branch }}-{{ .Revision }}
key: v1-jackdaw-repo-{{ .Branch }}-{{ .Revision }}
paths:
- .
deps:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased

## [0.7.9] - [2021-04-13]
## [0.7.10] - [2021-04-14]
* Bump netty related packages to latest version (related to changes in `0.7.8` which fixes CVEs).

## [0.7.8] - [2021-03-01]
Expand Down

0 comments on commit d23a069

Please sign in to comment.