From 54832890f0197a20285473b9f3404560bdd7c4cd Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Wed, 4 Sep 2024 23:54:06 -0400 Subject: [PATCH] Remove old Go versions from CI Looks like we were accidentally running older versions of Go in Circle CI. We have the stable and oldstable versions from Github Actions, so I guess we can stop running these 3x. --- .circleci/config.yml | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 64d306fe..546fd308 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,27 +6,6 @@ orbs: workflows: ci: jobs: - - go/test: - name: test-go-1.22 - gotestsum-format: testname - executor: - name: go/golang - tag: 1.18-alpine - - - go/test: - name: test-go-1.21 - gotestsum-format: testname - executor: - name: go/golang - tag: 1.19-alpine - - - go/test: - name: test-go-1.20 - gotestsum-format: testname - executor: - name: go/golang - tag: 1.20-alpine - - lint - build @@ -72,7 +51,7 @@ jobs: default: false executor: name: go/golang - tag: 1.20-alpine + tag: 1.23-alpine steps: - go/install: {package: git} - go/install-ssh @@ -99,7 +78,7 @@ jobs: lint: executor: name: go/golang - tag: 1.20-alpine + tag: 1.23-alpine steps: - checkout - run: go mod download