diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38ca1e0f..289eef39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v4 with: - go-version: '^1.20.2' + go-version: '^1.21.5' - name: Install dependencies run: make deps diff --git a/Makefile b/Makefile index a89d3720..220ca906 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ install: lint: @if ! command -v golangci-lint > /dev/null 2>&1; then \ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | \ - sh -s -- -b "$$(go env GOPATH)/bin" v1.51.2 ; \ + sh -s -- -b "$$(go env GOPATH)/bin" v1.55.2 ; \ fi golangci-lint run ./...