diff options
author | Valery Piashchynski <[email protected]> | 2023-06-04 19:46:11 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2023-06-04 19:46:11 +0200 |
commit | 2f38ae823efc299fd87a31ec1396160c2b5350c2 (patch) | |
tree | 6dbfe311d067d776400247aa9896feabab27f25e | |
parent | 14ac0a4b7ad2b5bbb6af77890ae684e968362d65 (diff) |
chore: update golangci-lint action
Signed-off-by: Valery Piashchynski <[email protected]>
-rw-r--r-- | .github/workflows/tests.yml | 2 | ||||
-rw-r--r-- | .golangci.yml | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ccb31581..4a2c4695 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,7 +41,7 @@ jobs: - name: Run linter uses: golangci/[email protected] with: - version: v1.52 # without patch version + version: v1.53 # without patch version only-new-issues: false # show only new issues if it's a pull request args: -v --build-tags=race --timeout=10m diff --git a/.golangci.yml b/.golangci.yml index 0533b9eb..bc4f4ca8 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -47,7 +47,6 @@ linters: # All available linters list: <https://golangci-lint.run/usage/linters/ enable: - asciicheck # Simple linter to check that your code does not contain non-ASCII identifiers - bodyclose # Checks whether HTTP response body is closed successfully - - depguard # Go linter that checks if package imports are in a list of acceptable packages - dogsled # Checks assignments with too many blank identifiers (e.g. x, _, _, _, := f()) - dupl # Tool for code clone detection - errcheck # Errcheck is a program for checking for unchecked errors in go programs. These unchecked errors can be critical bugs in some cases |