From e24783fbf122897f039cd31cbadd27f0a08cb304 Mon Sep 17 00:00:00 2001 From: Philippe Date: Tue, 12 Oct 2021 23:05:06 +0200 Subject: [PATCH] fix: setup-go for v1.16 --- .github/workflows/release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bebabca..76b9594 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,6 +16,10 @@ jobs: key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-go- + - name: Setup go 1.16 + uses: actions/setup-go@v2 + with: + go-version: '1.16' - name: compile linux amd64 env: GOARCH: amd64 @@ -39,6 +43,10 @@ jobs: key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-go- + - name: Setup go 1.16 + uses: actions/setup-go@v2 + with: + go-version: '1.16' - name: compile arm64 env: GOARCH: arm64 @@ -62,6 +70,10 @@ jobs: key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-go- + - name: Setup go 1.16 + uses: actions/setup-go@v2 + with: + go-version: '1.16' - name: compile arm env: GOARCH: arm