Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Learn more about the `forking workflow here <https://www.atlassian.com/git/tutor
Building, running & testing
---------------------------

You will need `Go 1.22.4 <https://golang.org>`_ . Instructions on how to set up your Go environment can be `found here <https://golang.org/doc/install>`_.
You will need `Go 1.22.10 <https://golang.org>`_ . Instructions on how to set up your Go environment can be `found here <https://golang.org/doc/install>`_.

.. code:: bash

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading