From 74853683c74e8e86346c7f2e8907f80c3f135075 Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Sat, 16 Mar 2024 03:00:54 +0300 Subject: [PATCH] Test commit: Disable all caches Signed-off-by: Alper Rifat Ulucinar --- .github/workflows/ci.yml | 44 ++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f12d17b65..f094529368 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,28 +68,28 @@ jobs: echo "analysis_cache_key_int=$(make go.lint.analysiskey-interval)" >> $GITHUB_OUTPUT - - name: Cache the Go Build Cache - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 - with: - path: ${{ steps.go_cache.outputs.cache }} - key: ${{ runner.os }}-build-lint-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-build-lint- - - - name: Cache Go Dependencies - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 - with: - path: ${{ steps.go_cache.outputs.mod_cache }} - key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-pkg- - - - name: Cache Linter Analysis - uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 - id: cache-analysis - with: - path: ${{ steps.go_cache.outputs.analysis_cache }} - key: ${{ steps.go_cache.outputs.analysis_cache_key }} - restore-keys: | - ${{ steps.go_cache.outputs.analysis_cache_key_int }} +# - name: Cache the Go Build Cache +# uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 +# with: +# path: ${{ steps.go_cache.outputs.cache }} +# key: ${{ runner.os }}-build-lint-${{ hashFiles('**/go.sum') }} +# restore-keys: ${{ runner.os }}-build-lint- +# +# - name: Cache Go Dependencies +# uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 +# with: +# path: ${{ steps.go_cache.outputs.mod_cache }} +# key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }} +# restore-keys: ${{ runner.os }}-pkg- +# +# - name: Cache Linter Analysis +# uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3 +# id: cache-analysis +# with: +# path: ${{ steps.go_cache.outputs.analysis_cache }} +# key: ${{ steps.go_cache.outputs.analysis_cache_key }} +# restore-keys: | +# ${{ steps.go_cache.outputs.analysis_cache_key_int }} - name: Vendor Dependencies run: make vendor vendor.check