From 50c291a71990ed0a4c0f86d04f3823a35ede274b Mon Sep 17 00:00:00 2001 From: Diana Devasia Date: Mon, 11 Mar 2024 18:16:24 -0400 Subject: [PATCH] Disabling depguard as the newer version of depguard included in golangci-lint requires list of acceptable packages. --- .github/workflows/test.yml | 2 +- .golangci.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1612c8eb..dbcfe210 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: true matrix: - go: ["1.22"] + go: ["1.22.1"] name: go ${{ matrix.go }} steps: - name: Checkout diff --git a/.golangci.yml b/.golangci.yml index 22897ef9..fbf43834 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -5,7 +5,8 @@ linters: disable-all: true enable: - bodyclose - - depguard + # https://github.com/atc0005/go-ci/issues/1024 + # - depguard - dogsled - exhaustive - funlen