diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2c893e5..72f67d8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -52,7 +52,7 @@ jobs: go-version: "1.23.4" # update together with Dockerfile.dev - uses: golangci/golangci-lint-action@v6 with: - version: "v1.63.3" # update together with Dockerfile.dev + version: "v1.63.4" # update together with Dockerfile.dev check-tidy: name: go mod tidy diff --git a/Dockerfile.dev b/Dockerfile.dev index ef2ea18..1f8a442 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -2,7 +2,7 @@ FROM golang:1.23.4 AS go # update together with .github/workflows/ci.yml -FROM golangci/golangci-lint:v1.63.3 AS linter +FROM golangci/golangci-lint:v1.63.4 AS linter FROM go AS dev ENV INSIDE_DEV_CONTAINER 1