From f351c85a776119d75300b87cfb6333b776ff58bf Mon Sep 17 00:00:00 2001 From: Josh Humphries Date: Mon, 7 Feb 2022 11:09:51 -0500 Subject: [PATCH] go.mod already states that 1.15 is needed; latest deps now require 1.15, so officially removing 1.14 --- .circleci/config.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0f2fc45..2e4ee54 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,12 +10,6 @@ shared_configs: # Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference version: 2.1 jobs: - build-1-14: - working_directory: ~/repo - docker: - - image: circleci/golang:1.14 - steps: *simple_job_steps - build-1-15: working_directory: ~/repo docker: @@ -56,7 +50,6 @@ jobs: workflows: pr-build-test: jobs: - - build-1-14 - build-1-15 - build-1-16 - build-1-17