From e9a9cbc2291448013558f8c8c68d618a1f69b9b7 Mon Sep 17 00:00:00 2001 From: Jakub Drobena Date: Tue, 1 Oct 2024 14:05:32 +0200 Subject: [PATCH 1/2] [CCXDEV-14419] Removing CODEOWNERS file --- CODEOWNERS | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS deleted file mode 100644 index 5acce80..0000000 --- a/CODEOWNERS +++ /dev/null @@ -1,2 +0,0 @@ -# CCX Processing team members are the default owners of the repository -* @tisnik @Bee-lee @JoseLSegura @matysek @epapbak @JiriPapousek @juandspy @Jakub007d From 077576afb698b63095f56b2d28059355bb2870ac Mon Sep 17 00:00:00 2001 From: Jakub Drobena Date: Wed, 2 Oct 2024 10:33:01 +0200 Subject: [PATCH 2/2] Fixing Go linters tests --- goerrcheck.sh | 2 +- ineffassign.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/goerrcheck.sh b/goerrcheck.sh index cbc7179..b7df8f8 100755 --- a/goerrcheck.sh +++ b/goerrcheck.sh @@ -25,7 +25,7 @@ echo -e "${BLUE}Finding all unchecked errors${NC}" if ! [ -x "$(command -v errcheck)" ] then echo -e "${BLUE}Installing errcheck ${NC}" - GO111MODULE=off go get github.com/kisielk/errcheck + GO111MODULE=on go install github.com/kisielk/errcheck@latest fi diff --git a/ineffassign.sh b/ineffassign.sh index a1c30a1..8f44674 100755 --- a/ineffassign.sh +++ b/ineffassign.sh @@ -24,7 +24,7 @@ echo -e "${BLUE}Detecting ineffectual assignments in Go code${NC}" if ! [ -x "$(command -v ineffassign)" ] then echo -e "${BLUE}Installing ineffassign${NC}" - GO111MODULE=off go get github.com/gordonklaus/ineffassign + GO111MODULE=on go install github.com/gordonklaus/ineffassign@latest fi if ! ineffassign ./...