From 7b95996c38c3c7437253274b14b6d6de7b8e65f7 Mon Sep 17 00:00:00 2001 From: Andras Jaky Date: Fri, 1 Apr 2022 12:02:16 +0200 Subject: [PATCH] fix --- .github/workflows/is-test-v2.yml | 4 ++-- .github/workflows/is-test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/is-test-v2.yml b/.github/workflows/is-test-v2.yml index 330fd4d520..afe36cf18d 100644 --- a/.github/workflows/is-test-v2.yml +++ b/.github/workflows/is-test-v2.yml @@ -31,13 +31,13 @@ jobs: uses: actions/cache@v2 with: path: ${{ steps.go-cache-paths.outputs.go-build }} - key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} + key: ${{ runner.os }}-go-build-${{ hashFiles('go.sum') }} - name: Go Mod Cache uses: actions/cache@v2 with: path: ${{ steps.go-cache-paths.outputs.go-mod }} - key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} + key: ${{ runner.os }}-go-mod-${{ hashFiles('go.sum') }} - name: Create kind cluster and run tests run: | diff --git a/.github/workflows/is-test.yml b/.github/workflows/is-test.yml index 7aed6034cb..3dd4948dcc 100644 --- a/.github/workflows/is-test.yml +++ b/.github/workflows/is-test.yml @@ -31,13 +31,13 @@ jobs: uses: actions/cache@v2 with: path: ${{ steps.go-cache-paths.outputs.go-build }} - key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} + key: ${{ runner.os }}-go-build-${{ hashFiles('go.sum') }} - name: Go Mod Cache uses: actions/cache@v2 with: path: ${{ steps.go-cache-paths.outputs.go-mod }} - key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} + key: ${{ runner.os }}-go-mod-${{ hashFiles('go.sum') }} - name: Create kind cluster and run tests run: |