From a68a2b7fc5e2d3d26982a9d5b12ae8d42fb64b3c Mon Sep 17 00:00:00 2001 From: Aoang Date: Tue, 22 Mar 2022 13:56:32 +0800 Subject: [PATCH] Update supported Golang version to Go 1.18 --- .github/workflows/go.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 555562e2..8a2ab280 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - go: ['1.15', '1.16', '1.17'] + go: ['1.16', '1.17', '1.18'] fail-fast: false env: OS: ${{ matrix.os }} @@ -29,7 +29,7 @@ jobs: - name: Get Build Tools run: | - GO111MODULE=on go get github.com/ory/go-acc + GO111MODULE=on go install github.com/ory/go-acc - name: Add $GOPATH/bin to $PATH run: | @@ -64,7 +64,7 @@ jobs: strategy: matrix: - go: ['1.15', '1.16', '1.17'] + go: ['1.16', '1.17', '1.18'] fail-fast: false env: OS: windows-latest