From 84ba65e13e26c8c74eb9f70dba3bd1623415c302 Mon Sep 17 00:00:00 2001 From: Josh Humphries <2035234+jhump@users.noreply.github.com> Date: Tue, 9 Apr 2024 17:07:41 -0400 Subject: [PATCH] move linting back to go 1.21 instead of latest go 1.22 --- .circleci/config.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e48d46d..defe0a8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,12 +25,6 @@ jobs: working_directory: ~/repo docker: - image: cimg/go:1.21 - steps: *simple_job_steps - - build-1-22: - working_directory: ~/repo - docker: - - image: cimg/go:1.22 steps: - checkout - run: @@ -38,6 +32,14 @@ jobs: command: | make ci + # TODO: Need updates to some static analyzer tools to support 1.22. After those + # are updated, move the full linting from 1.21 to this latest release. + build-1-22: + working_directory: ~/repo + docker: + - image: cimg/go:1.22 + steps: *simple_job_steps + workflows: pr-build-test: jobs: