diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index ea93c51..1b8f65f 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -12,7 +12,7 @@ jobs: with: go-version: '1.19' - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: | go mod download @@ -20,7 +20,7 @@ jobs: run: | go test -race -covermode atomic -coverprofile=covprofile ./... - name: Install goveralls - run: go get github.com/mattn/goveralls@latest + run: go install github.com/mattn/goveralls@latest - name: Send coverage env: COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}