From de60bbed3f0c62e5933c8927cddf1d4a7ee20f75 Mon Sep 17 00:00:00 2001 From: Andy Grunwald Date: Thu, 28 May 2020 10:23:40 +0200 Subject: [PATCH] Update testing github action workflow to actions/cache@v2 --- .github/workflows/testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index a131647..ba3b149 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -22,7 +22,7 @@ jobs: go-version: 1.14 # Caching go modules to speed up the run - - uses: actions/cache@v1 + - uses: actions/cache@v2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -40,4 +40,4 @@ jobs: run: make staticcheck - name: Run Unit tests. - run: make test \ No newline at end of file + run: make test