diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1dded32b0..ed9db74ad 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -21,14 +21,6 @@ jobs: with: go-version-file: 'go.mod' - - name: Restore Go modules cache - uses: actions/cache@v4 - with: - path: ~/go/pkg/mod - key: go-${{ runner.os }}-${{ hashFiles('go.mod') }} - restore-keys: | - go-${{ runner.os }}- - - name: Download dependencies run: go mod download diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 52f99cd81..4a97da25b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,14 +27,6 @@ jobs: with: go-version-file: 'go.mod' - - name: Restore Go modules cache - uses: actions/cache@v4 - with: - path: ~/go/pkg/mod - key: go-${{ runner.os }}-${{ hashFiles('go.mod') }} - restore-keys: | - go-${{ runner.os }}- - - name: Verify dependencies run: | go mod verify