From 5bd17a0f4509ee2802b873170d3e0ed208e731b1 Mon Sep 17 00:00:00 2001 From: panticmilos Date: Tue, 9 Aug 2022 14:50:33 +0200 Subject: [PATCH] Update amd64 path to x64 --- __tests__/setup-go.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/setup-go.test.ts b/__tests__/setup-go.test.ts index 590c78c..4378b0e 100644 --- a/__tests__/setup-go.test.ts +++ b/__tests__/setup-go.test.ts @@ -787,7 +787,7 @@ describe('setup-go', () => { }); dlSpy.mockImplementation(async () => '/some/temp/path'); - let toolPath = path.normalize('/cache/go/1.13.7/amd64'); + let toolPath = path.normalize('/cache/go/1.13.7/x64'); extractTarSpy.mockImplementation(async () => '/some/other/temp/path'); cacheSpy.mockImplementation(async () => toolPath);