From 87f0c62a3e243b1c1ace2b7565f13d96a3286f7d Mon Sep 17 00:00:00 2001 From: Will Norris Date: Thu, 11 Feb 2021 14:33:42 -0800 Subject: [PATCH] actions: bump to actions/cache@v2 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d4648ad..1035883 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,10 +32,10 @@ jobs: - uses: actions/checkout@v2 - name: Cache go modules - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }} + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-go- - name: Run go test