From 8e1902b4deaae4d726f65b1460258865b48a11ac Mon Sep 17 00:00:00 2001 From: Jan De Dobbeleer Date: Thu, 28 Apr 2022 16:25:30 +0200 Subject: [PATCH] chore: update to go1.18.1 --- .github/workflows/composite/bootstrap-go/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/composite/bootstrap-go/action.yml b/.github/workflows/composite/bootstrap-go/action.yml index 04d148ae..4af12748 100644 --- a/.github/workflows/composite/bootstrap-go/action.yml +++ b/.github/workflows/composite/bootstrap-go/action.yml @@ -10,10 +10,10 @@ runs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: 1.18 + go-version: 1.18.1 - name: Override Go ♻️ shell: pwsh run: | New-Item -Path ./bin -ItemType Directory - Invoke-WebRequest 'https://github.com/jandedobbeleer/go/releases/download/1.18/go' -OutFile "$env:GOROOT/bin/go" + Invoke-WebRequest 'https://github.com/jandedobbeleer/go/releases/download/1.18.1/go' -OutFile "$env:GOROOT/bin/go" chmod a+x "$env:GOROOT/bin/go" 2>&1