Results 2 comments of shuning

same issue with 4.15.1 Dockerfile ``` FROM golang:1.17 as build RUN mkdir /app WORKDIR /app ENV GO111MODULE=on COPY ./go.mod ./ COPY ./go.sum ./ RUN go mod download ``` github action...

Sorry I was stupid, I didn't specify go version on Github CI ``` jobs: test: name: test runs-on: ubuntu-18.04 steps: - name: Install Go uses: actions/setup-go@v2 with: go-version: '^1.17.0' -...