From 4dc964d9060513b15a9adadfe2d482e4c86386b2 Mon Sep 17 00:00:00 2001 From: David Verdeguer Date: Fri, 8 May 2020 16:43:31 +0200 Subject: [PATCH] Fix go for mac --- .github/workflows/integration-testing.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index 1b647024c..ab0a07e1c 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -10,6 +10,10 @@ jobs: runs-on: ${{ matrix.os }} steps: + - uses: actions/setup-go@v2 + if: ${{ matrix.os == 'macos-latest' }} + with: + go-version: '^1.13.1' - uses: actions/checkout@v2 - name: Move codeql-action shell: bash @@ -33,6 +37,10 @@ jobs: runs-on: ${{ matrix.os }} steps: + - uses: actions/setup-go@v2 + if: ${{ matrix.os == 'macos-latest' }} + with: + go-version: '^1.13.1' - uses: actions/checkout@v2 - name: Move codeql-action shell: bash