actions-on-packages/Setup Go environment
Setup a Go environment and add it to the PATH
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
- Runtime
- Deprecated runtime
Inputs
| name | description | required | default |
|---|---|---|---|
| go-version | The Go version to download (if necessary) and use. Supports semver spec and ranges. | — | — |
| go-version-file | Path to the go.mod or go.work file. | — | — |
| check-latest | Set this option to true if you want the action to always check for the latest available version that satisfies the version spec | — | false |
| token | Used to pull node distributions from go-versions. Since there's a default, this is typically not supplied by the user. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting. | — | ${{ github.server_url == 'https://github.com' && github.token || '' }} |
| cache | Used to specify whether caching is needed. Set to true, if you'd like to enable caching. | — | true |
| cache-dependency-path | Used to specify the path to a dependency file - go.sum | — | — |
| architecture | Target architecture for Go to use. Examples: x86, x64. Will use system architecture by default. | — | — |
Outputs
| name | description |
|---|---|
| go-version | The installed Go version. Useful when given a version range as input. |
| cache-hit | A boolean value to indicate if a cache was hit |