From 083e9789b84ebd88ea15fc2a66b6eae2730f47c4 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 10 Apr 2023 10:33:44 -0700 Subject: [PATCH] ci/gha: rm actions/cache from validate/deps job Since commit e3cf217cf1fa9248d153 actions/setup-go@v4 uses caching implicitly, so it is no longer required. Signed-off-by: Kir Kolyshkin --- .github/workflows/validate.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index a22676b52..2e54e648b 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -108,14 +108,6 @@ jobs: uses: actions/setup-go@v4 with: go-version: "${{ env.GO_VERSION }}" - - name: cache go mod and $GOCACHE - uses: actions/cache@v3 - with: - path: | - ~/go/pkg/mod - ~/.cache/go-build - key: ${{ runner.os }}-go.sum-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-go.sum- - name: verify deps run: make verify-dependencies