From 4d72de101f7b986428325f170b5ebe24a1e57cb4 Mon Sep 17 00:00:00 2001 From: arran4 <111667+arran4@users.noreply.github.com> Date: Wed, 5 Aug 2026 06:05:58 +0000 Subject: [PATCH] ci: remove redundant setup-go before govulncheck The `golang/govulncheck-action` action manages its own Go setup and caching. Having a separate `actions/setup-go` right before it caused cache extraction conflicts ("File exists" errors) because the vulnerability check action attempted to overwrite read-only cache files. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75eaeb4..fb2831d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -285,10 +285,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: actions/setup-go@v6 - with: - go-version-file: go.mod - cache: true - name: check for go vulnerabilities uses: golang/govulncheck-action@v1 with: