From 6bea5b2d010f2967905f5da3be669102284e7643 Mon Sep 17 00:00:00 2001 From: Haris Osmanagic Date: Wed, 9 Oct 2024 14:54:06 +0200 Subject: [PATCH] Set Go version, update .golangci.yml --- .golangci.yml | 2 +- go.mod | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 52c5755..d5fa0a6 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -30,6 +30,7 @@ linters: disable-all: true enable: - bodyclose + - copyloopvar # - depguard - dogsled - durationcheck @@ -38,7 +39,6 @@ linters: # - errorlint # - exhaustive # - exhaustivestruct - - exportloopref # - forbidigo # - forcetypeassert # - funlen diff --git a/go.mod b/go.mod index cdc78ac..4d4dbb7 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,6 @@ module github.com/conduitio/conduit-connector-kafka -go 1.22.5 -toolchain go1.23.2 +go 1.23.2 require ( github.com/Masterminds/sprig/v3 v3.3.0