From 8a5e2357ea2a668df1429f0f4ee5e280d5d3652a Mon Sep 17 00:00:00 2001 From: Kosei Kitahara Date: Fri, 1 Nov 2019 01:21:44 +0900 Subject: [PATCH] Add wildcard --- examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples.md b/examples.md index 0497559..6fdb05c 100644 --- a/examples.md +++ b/examples.md @@ -129,7 +129,7 @@ Use with virtual environments. - uses: actions/cache@preview with: path: .venv - key: ${{ runner.os }}-pip-${{ hashFiles(format('{0}/{1}', github.workspace, 'requirements.txt')) }} + key: ${{ runner.os }}-pip-${{ hashFiles(format('{0}/{1}', github.workspace, '**/requirements.txt')) }} restore-keys: | ${{ runner.os }}-pip- - run: |