From 3f934fdba58f8509a57c2e8f15357f0f04807194 Mon Sep 17 00:00:00 2001 From: Alvaro Aleman Date: Tue, 15 Mar 2022 18:38:55 -0400 Subject: [PATCH] Update CI to use go 1.18 --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8031d8f6..7d029c11 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,7 +4,7 @@ jobs: build: strategy: matrix: - go-versions: [1.13.x] + go-versions: [1.18.0] platform: [windows-latest] runs-on: ${{ matrix.platform }} steps: @@ -24,7 +24,7 @@ jobs: test: strategy: matrix: - go-versions: [1.12.x, 1.13.x, 1.14.x] + go-versions: [1.18.0] platform: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.platform }} steps: @@ -56,7 +56,7 @@ jobs: - name: Install Go uses: actions/setup-go@v1 with: - go-version: 1.13.x + go-version: 1.18.0 - name: Add GOBIN to PATH run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH - name: Install dependencies