setup-go icon indicating copy to clipboard operation
setup-go copied to clipboard

Set up your GitHub Actions workflow with a specific version of Go

Results 96 setup-go issues
Sort by recently updated
recently updated
newest added

**Description:** I'm getting this warning, on my [workflow](https://github.com/fmunteanu/hugo-test/blob/main/.github/workflows/hugo.yml): ``` Warning: Restore cache failed: Dependencies file is not found in /home/runner/work/hugo-test/hugo-test. Supported file pattern: go.sum ``` ![image](https://github.com/actions/setup-go/assets/19806136/3237006e-ce33-4fef-a252-e1cc8768a3b1) There is a previous...

bug

**Description:** Tools like `gopls check ` can output line column ranges but the [matcher](https://github.com/actions/setup-go/blob/cdcb36043654635271a94b9a6d1392de5bb323a7/matchers.json#L7) installed by this action can not match them. This action can not match these column ranges...

feature request

**Description:** I have a repo with a `go.mod` and `go.sum` and I caller another repo that contains a composite action that checks out the caller repo and calls `actions/setup-go@v5` ```yaml...

bug

**Description:** "Validate 'setup-go'" is failing. The cause is that the architecture of macos-latest has become arm64. https://github.com/actions/runner-images **Action version:** v5.0.0 **Platform:** - [ ] Ubuntu - [x] macOS - [...

bug

**Description:** 1. Add the following documentation sections - Multi-target builds - Invalidate cache if source code changes - Caching with actions/cache 2. Replace '-' with '##' in order to have...

**Description:** golang.org is redirect to go.dev ``` $ curl -v 'https://golang.org/dl/?mode=json&include=all' ... < HTTP/2 301 ... < location: https://go.dev/dl/?mode=json&include=all ... Moved Permanently. ``` **Related issue:** None. **Check list:** - ~[...

**Description:** The line endings of package.json were CRLF, so I converted them to LF. **Related issue:** None. **Check list:** - ~[ ] Mark if documentation changes are required.~ - ~[...

**Description:** The etcd project see failures downloading go with the `setup-go` action from time to time on our managed arm64 runners. We suspect this might just be network flakiness so...

bug

**Description:** When the version of Go in the `go` directive of `go.mod` is different from the version in the `toolchain` directive there is a cache conflict which causes errors on...

bug

**Description:** Add cache key prefix, like that: ```yaml - name: Install Go uses: actions/setup-go@v4 with: go-version: '1.20' cache: true cache-prefix: 'test-${{ matrix.arch }}-${{ matrix.flags }}-' ``` **Justification:** Cache from multiple...

feature request