From b5df190a35f77e296a5bf153e28f59ef399fefbb Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Fri, 18 Mar 2022 20:57:57 -0700 Subject: [PATCH] Add Go v1.18 to public Github Workflow * Update Github Workflow `checkout` and `setup-go` actions * Change `go get ` to `go install ` * Remove Go v1.16 --- .github/workflows/test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3f42c71a..13764122 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,18 +13,18 @@ jobs: strategy: fail-fast: false matrix: - go: ['1.16', '1.17'] + go: ['1.17', '1.18'] steps: - name: setup - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{matrix.go}} - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: tools - run: GO111MODULE=off go get golang.org/x/lint/golint + run: go install golang.org/x/lint/golint@latest - name: test run: make