From ac64702798da201da7455b5bb3ce85d47e5e4d26 Mon Sep 17 00:00:00 2001 From: Shane Utt Date: Wed, 30 Aug 2023 15:27:46 -0400 Subject: [PATCH] fix: temp disable linter build cache --- .github/workflows/lint.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index df8d967b..3f499551 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -20,14 +20,14 @@ jobs: uses: actions/setup-go@v3 with: go-version: '^1.19' - - - name: Cache Go modules - uses: actions/cache@v3 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-build-codegen-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-build-codegen- + # + # - name: Cache Go modules + # uses: actions/cache@v3 + # with: + # path: ~/go/pkg/mod + # key: ${{ runner.os }}-build-codegen-${{ hashFiles('**/go.sum') }} + # restore-keys: | + # ${{ runner.os }}-build-codegen- - name: Checkout repository uses: actions/checkout@v3