diff --git a/.golangci.yaml b/.golangci.yaml index 9f66bec276..9b46c5123e 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -24,7 +24,7 @@ issues: run: concurrency: 4 timeout: 10m - go: '1.22' + go: '1.24' linters: enable: # Simple linter to check that your code does not contain non-ASCII identifiers [fast: true, auto-fix: false] diff --git a/Dockerfile.core b/Dockerfile.core index 1e0ae0fb13..4855732883 100644 --- a/Dockerfile.core +++ b/Dockerfile.core @@ -41,7 +41,7 @@ COPY .git/ ./.git/ RUN golangci-lint run \ --timeout 10m \ --config ./.golangci.yaml \ - --out-format=github-actions \ + --out-format=colored-line-number \ --concurrency=$(getconf _NPROCESSORS_ONLN) FROM base AS unit-test