Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump go from 1.22 to 1.22.4 #1136

Merged
merged 1 commit into from
Jul 16, 2024
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
- image: cimg/go:1.22.4

environment:
GOPATH: /home/circleci/go
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:

deploy-master:
docker:
- image: cimg/go:1.22
- image: cimg/go:1.22.4

environment:
GOPATH: /home/circleci/go
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

deploy-release:
docker:
- image: cimg/go:1.22
- image: cimg/go:1.22.4

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.1 AS build-env
FROM golang:1.22.4 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 <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.4 <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
go 1.22.4

require (
github.com/ChrisTrenkamp/xsel v0.9.6
Expand Down
Loading