diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4879ad4b..8ddd15e5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,12 +25,6 @@ jobs: uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - name: Cache - uses: actions/cache@v3 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-connect-ci-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-connect-ci- - name: Test run: make test - name: Lint diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 49200dae..391536fa 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -25,15 +25,6 @@ jobs: uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - - id: go-cache-paths - shell: bash - run: | - echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT - - name: Mod Cache - uses: actions/cache@v3 - with: - path: ${{ steps.go-cache-paths.outputs.go-mod }} - key: ${{ runner.os }}-connect-ci-go-mod-${{ hashFiles('**/go.sum') }} - name: Test shell: bash run: |