From d5f80810f71ad30c33fab06143d304127a0e1277 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 11 Mar 2021 07:26:37 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v2 --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- .github/workflows/validate.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5dd0aef0..30b9cfbf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - name: cache - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 32b9c602..f09e2dc3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - name: cache - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e41679d3..8d345574 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - name: cache - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 745ae7a9..8d64bd0c 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -18,7 +18,7 @@ jobs: - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - name: cache - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.sum') }}