Fall back to downloading from go.dev/dl instead of storage.googleapis.com/golang

This commit is contained in:
Nicholas Ngai 2025-10-17 12:11:05 -07:00
parent be3c94b385
commit de2d1f407f
No known key found for this signature in database
GPG key ID: 65358B5A905963F4
4 changed files with 6 additions and 6 deletions

View file

@ -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(() => '');