diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c01405bb..cd7a45fb 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -23,13 +23,13 @@ jobs: - uses: actions/setup-go@v3 with: # ci is set to go1.19 to match developer setups - go-version: 1.19.2 + go-version: "1.21" - uses: actions/checkout@v3 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version - version: v1.50.0 + version: v1.54.2 working-directory: go test: @@ -39,7 +39,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: 1.19.2 + go-version: "1.21" - name: test working-directory: ./go run: make test @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: 1.19.2 + go-version: "1.21" - name: Run coverage working-directory: ./go run: go test -race -coverprofile=coverage.txt -covermode=atomic