From 448d8059539407b4c88dfa49c935aa9bf43280cf Mon Sep 17 00:00:00 2001 From: Hiroki Noda Date: Sat, 12 Feb 2022 03:16:52 +0900 Subject: [PATCH] [D] Fix: should use dub.selections.json for cache --- examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples.md b/examples.md index bbfd1b4..d54dacd 100644 --- a/examples.md +++ b/examples.md @@ -91,7 +91,7 @@ steps: - uses: actions/cache@v2 with: path: ~/.dub - key: ${{ runner.os }}-dub-${{ hashFiles('**/dub.json') }} + key: ${{ runner.os }}-dub-${{ hashFiles('**/dub.selections.json') }} restore-keys: | ${{ runner.os }}-dub- ``` @@ -102,7 +102,7 @@ steps: - uses: actions/cache@v2 with: path: ~\AppData\Local\dub - key: ${{ runner.os }}-dub-${{ hashFiles('**/dub.json') }} + key: ${{ runner.os }}-dub-${{ hashFiles('**/dub.selections.json') }} restore-keys: | ${{ runner.os }}-dub- ```