From 4b99c108a58a3a79236ead40e1d47f7b7be4357b Mon Sep 17 00:00:00 2001 From: ashmrtn <3891298+ashmrtn@users.noreply.github.com> Date: Thu, 13 Jul 2023 19:10:51 -0700 Subject: [PATCH] Upgrade to golangci-lint 1.53.3 (#3800) #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Supportability/Tests - [x] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- .github/workflows/ci.yml | 2 +- src/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ecda98fa..ce252765d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -391,7 +391,7 @@ jobs: with: # Keep pinned to a verson as sometimes updates will add new lint # failures in unchanged code. - version: v1.52.2 + version: v1.53.3 working-directory: src skip-pkg-cache: true skip-build-cache: true diff --git a/src/Makefile b/src/Makefile index 519f86f68..132e47056 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,5 +1,5 @@ # This must match the version defined in .github/workflows/lint.yaml. -WANTED_LINT_VERSION := 1.52.2 +WANTED_LINT_VERSION := 1.53.3 LINT_VERSION := $(shell golangci-lint version | cut -d' ' -f4) HAS_LINT := $(shell which golangci-lint)