diff --git a/.circleci/config.yml b/.circleci/config.yml index 9d3e0d7a9..5a3a041b2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: build: docker: - - image: cimg/go:1.22.4 + - image: cimg/go:1.22.10 environment: GOPATH: /home/circleci/go @@ -32,7 +32,7 @@ jobs: deploy-master: docker: - - image: cimg/go:1.22.4 + - image: cimg/go:1.22.10 environment: GOPATH: /home/circleci/go @@ -87,7 +87,7 @@ jobs: deploy-release: docker: - - image: cimg/go:1.22.4 + - image: cimg/go:1.22.10 environment: GOPATH: /home/circleci/go diff --git a/Dockerfile b/Dockerfile index 83b3dee8a..c41bd8b24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.4 AS build-env +FROM golang:1.22.10 AS build-env WORKDIR /usr/local/go/src/github.com/SpectoLabs/hoverfly COPY . /usr/local/go/src/github.com/SpectoLabs/hoverfly RUN cd core/cmd/hoverfly && CGO_ENABLED=0 GOOS=linux go install -ldflags "-s -w" diff --git a/docs/pages/contributing.rst b/docs/pages/contributing.rst index dd403171c..31138cd6a 100644 --- a/docs/pages/contributing.rst +++ b/docs/pages/contributing.rst @@ -16,7 +16,7 @@ Learn more about the `forking workflow here `_ . Instructions on how to set up your Go environment can be `found here `_. +You will need `Go 1.22.10 `_ . Instructions on how to set up your Go environment can be `found here `_. .. code:: bash diff --git a/go.mod b/go.mod index 2cbf99bb0..6300fc1f8 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/SpectoLabs/hoverfly -go 1.22.4 +go 1.22.10 require ( github.com/ChrisTrenkamp/xsel v0.9.16