From 44903b9225fc73162d947be30c1b41171575dcd7 Mon Sep 17 00:00:00 2001 From: Thomas Maier Date: Sun, 17 Oct 2021 18:57:33 +0200 Subject: [PATCH] Explicitly select Go 1.17 --- .github/workflows/release-fanctl.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release-fanctl.yml b/.github/workflows/release-fanctl.yml index 986423f..836a19b 100644 --- a/.github/workflows/release-fanctl.yml +++ b/.github/workflows/release-fanctl.yml @@ -11,6 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: set up go + uses: actions/setup-go@v2 + with: + go-version: 1.17 - name: store tag name id: store_tag run: echo "::set-output name=release_tag::${GITHUB_REF/refs\/tags\//}"