mirror of https://github.com/actions/setup-go.git
				
				
				
			Merge de2d1f407f into be3c94b385
				
					
				
			This commit is contained in:
		
						commit
						fd7780d9ae
					
				|  | @ -19,7 +19,7 @@ The V3 edition of the action offers: | |||
| - stable and oldstable aliases | ||||
| - Bug Fixes (including issues around version matching and semver) | ||||
| 
 | ||||
| The action will first check the local cache for a version match. If a version is not found locally, it will pull it from the `main` branch of the [go-versions](https://github.com/actions/go-versions/blob/main/versions-manifest.json) repository. On miss or failure, it will fall back to downloading directly from [go dist](https://storage.googleapis.com/golang). To change the default behavior, please use the [check-latest input](#check-latest-version). | ||||
| The action will first check the local cache for a version match. If a version is not found locally, it will pull it from the `main` branch of the [go-versions](https://github.com/actions/go-versions/blob/main/versions-manifest.json) repository. On miss or failure, it will fall back to downloading directly from [go dist](https://go.dev/dl). To change the default behavior, please use the [check-latest input](#check-latest-version). | ||||
| 
 | ||||
| **Note:** The `setup-go` action uses executable binaries which are built by Golang side. The action does not build golang from source code. | ||||
| 
 | ||||
|  | @ -199,7 +199,7 @@ For more information about semantic versioning, please refer to [semver](https:/ | |||
| 
 | ||||
| ## Using `setup-go` on GHES | ||||
| 
 | ||||
| `setup-go` comes pre-installed on the appliance with GHES if Actions is enabled. When dynamically downloading Go distributions, `setup-go` downloads distributions from [`actions/go-versions`](https://github.com/actions/go-versions) on github.com (outside of the appliance). These calls to `actions/go-versions` are made via unauthenticated requests, which are limited to [60 requests per hour per IP](https://docs.github.com/en/rest/overview/resources-in-the-rest-api#rate-limiting). If more requests are made within the time frame, then you will start to see rate-limit errors during downloading that looks like: `##[error]API rate limit exceeded for...`. After that error the action will try to download versions directly from https://storage.googleapis.com/golang, but it also can have rate limit so it's better to put token. | ||||
| `setup-go` comes pre-installed on the appliance with GHES if Actions is enabled. When dynamically downloading Go distributions, `setup-go` downloads distributions from [`actions/go-versions`](https://github.com/actions/go-versions) on github.com (outside of the appliance). These calls to `actions/go-versions` are made via unauthenticated requests, which are limited to [60 requests per hour per IP](https://docs.github.com/en/rest/overview/resources-in-the-rest-api#rate-limiting). If more requests are made within the time frame, then you will start to see rate-limit errors during downloading that looks like: `##[error]API rate limit exceeded for...`. After that error the action will try to download versions directly from https://go.dev/dl, but it also can have rate limit so it's better to put token. | ||||
| 
 | ||||
| To get a higher rate limit, you can [generate a personal access token on github.com](https://github.com/settings/tokens/new) and pass it as the `token` input for the action: | ||||
| 
 | ||||
|  |  | |||
|  | @ -359,7 +359,7 @@ describe('setup-go', () => { | |||
| 
 | ||||
|     let expPath = path.win32.join(toolPath, 'bin'); | ||||
|     expect(dlSpy).toHaveBeenCalledWith( | ||||
|       'https://storage.googleapis.com/golang/go1.13.1.windows-amd64.zip', | ||||
|       'https://go.dev/dl/go1.13.1.windows-amd64.zip', | ||||
|       'C:\\temp\\go1.13.1.windows-amd64.zip', | ||||
|       undefined | ||||
|     ); | ||||
|  | @ -913,7 +913,7 @@ use . | |||
|         let expectedUrl = | ||||
|           platform === 'win32' | ||||
|             ? `https://github.com/actions/go-versions/releases/download/${version}/go-${version}-${platform}-${arch}.${fileExtension}` | ||||
|             : `https://storage.googleapis.com/golang/go${version}.${osSpec}-${arch}.${fileExtension}`; | ||||
|             : `https://go.dev/dl/go${version}.${osSpec}-${arch}.${fileExtension}`; | ||||
| 
 | ||||
|         // ... but not in the local cache
 | ||||
|         findSpy.mockImplementation(() => ''); | ||||
|  |  | |||
|  | @ -70997,7 +70997,7 @@ function getInfoFromDist(versionSpec, arch) { | |||
|         if (!version) { | ||||
|             return null; | ||||
|         } | ||||
|         let downloadUrl = `https://storage.googleapis.com/golang/${version.files[0].filename}`; | ||||
|         let downloadUrl = `https://go.dev/dl/${version.files[0].filename}`; | ||||
|         return { | ||||
|             type: 'dist', | ||||
|             downloadUrl: downloadUrl, | ||||
|  |  | |||
|  | @ -252,7 +252,7 @@ async function getInfoFromDist( | |||
|     return null; | ||||
|   } | ||||
| 
 | ||||
|   let downloadUrl: string = `https://storage.googleapis.com/golang/${version.files[0].filename}`; | ||||
|   let downloadUrl: string = `https://go.dev/dl/${version.files[0].filename}`; | ||||
| 
 | ||||
|   return <IGoVersionInfo>{ | ||||
|     type: 'dist', | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Nicholas Ngai
						Nicholas Ngai