From ee9e63ca40a4b27db4fce4fd3230ac8921c38a2a Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Thu, 21 Jul 2022 08:26:49 -0700 Subject: [PATCH] Setup go for release job --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d5976015..a3dae9cec 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,10 +14,14 @@ jobs: steps: - name: Code Checkout uses: actions/checkout@v1 - - name: Set Ruby + - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '2.6' + ruby-version: '2.7' + - name: Setup Go + uses: actions/setup-go@v3 + with: + go-version: '>=1.17.11' - name: Create Builders Release run: ./.ci/release.sh working-directory: ${{github.workspace}}