Skip to content

Commit

Permalink
Test commit: Disable all caches
Browse files Browse the repository at this point in the history
Signed-off-by: Alper Rifat Ulucinar <[email protected]>
  • Loading branch information
ulucinar committed Mar 16, 2024
1 parent af3e428 commit 7485368
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7485368

Please sign in to comment.