diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 72d20d8..f2137f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: - name: set up Go uses: actions/setup-go@v1 with: - go-version: 1.14 + go-version: 1.17 id: go - name: set up Go module cache uses: actions/cache@v1 @@ -29,6 +29,6 @@ jobs: - name: check out code uses: actions/checkout@v2 - name: install golint - run: go get -u golang.org/x/lint/golint + run: go install golang.org/x/lint/golint@latest - name: run tests run: make test