diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index cbef15c3b37..622c9fdce50 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -24,6 +24,7 @@ jobs: - name: Install Go uses: actions/setup-go@v4 with: + cache: false # setup-go v4 caches by default # NOTE: Keep this in sync with the version from go.mod go-version: "1.20.x" diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 37c53168a5e..177375f4f35 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -19,6 +19,7 @@ jobs: - uses: actions/setup-go@v4 with: + cache: false # setup-go v4 caches by default # NOTE: Keep this in sync with the version from go.mod go-version: "1.20.x" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 38a76802bc0..32dff090133 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,6 +29,7 @@ jobs: - name: Install Go uses: actions/setup-go@v4 with: + cache: false # setup-go v4 caches by default go-version: ${{ matrix.go-version }} - name: Run Test diff --git a/.github/workflows/vulncheck.yml b/.github/workflows/vulncheck.yml index 85e96fdd002..da50983c515 100644 --- a/.github/workflows/vulncheck.yml +++ b/.github/workflows/vulncheck.yml @@ -27,9 +27,9 @@ jobs: - name: Install Go uses: actions/setup-go@v4 with: + cache: false # setup-go v4 caches by default go-version: "stable" check-latest: true - cache: false - name: Install Govulncheck run: go install golang.org/x/vuln/cmd/govulncheck@latest