Skip to content

Commit

Permalink
update go
Browse files Browse the repository at this point in the history
Signed-off-by: Alice Wasko <[email protected]>
  • Loading branch information
Alice Wasko committed May 17, 2024
1 parent 25a58de commit 73a7f57
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ following Free and Open Source software:

Name Version License(s)
---- ------- ----------
the Go language standard library ("std") v1.21.10 3-clause BSD license
the Go language standard library ("std") v1.22.3 3-clause BSD license
dario.cat/mergo v1.0.0 3-clause BSD license
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 MIT license
github.com/MakeNowJust/heredoc v1.0.0 MIT license
Expand Down
2 changes: 1 addition & 1 deletion docker/base-python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ RUN apk --no-cache add \
# 'python3' versions above.
RUN pip3 install "Cython<3.0" pip-tools==7.3

RUN curl --fail -L https://dl.google.com/go/go1.21.10.linux-amd64.tar.gz | tar -C /usr/local -xzf -
RUN curl --fail -L https://dl.google.com/go/go1.22.3.linux-amd64.tar.gz | tar -C /usr/local -xzf -

# The YAML parser is... special. To get the C version, we need to install Cython and libyaml, then
# build it locally -- just using pip won't work.
Expand Down
2 changes: 1 addition & 1 deletion docker/test-http/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The `test-http` image gets built by `pkg/kubeapply` for use by
# various kubeapply-templated YAML files.

FROM golang:1.21
FROM golang:1.22
COPY httptest.go /usr/local/bin/httptest.go
RUN go build -o /usr/local/bin/httptest /usr/local/bin/httptest.go
ENTRYPOINT ["/usr/local/bin/httptest"]
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/emissary-ingress/emissary/v3

go 1.21
go 1.22

// If you're editing this file, there's a few things you should know:
//
Expand Down
2 changes: 1 addition & 1 deletion tools/src/chart-doc-gen/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module local

go 1.21
go 1.22

require kubepack.dev/chart-doc-gen v0.5.0

Expand Down
2 changes: 1 addition & 1 deletion tools/src/crane/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module local

go 1.21
go 1.22

require github.com/google/go-containerregistry v0.17.0

Expand Down
2 changes: 1 addition & 1 deletion tools/src/ct/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module local

go 1.21
go 1.22

require github.com/helm/chart-testing/v3 v3.10.1

Expand Down
2 changes: 1 addition & 1 deletion tools/src/golangci-lint/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module local

go 1.21
go 1.22

require github.com/golangci/golangci-lint v1.56.1

Expand Down
2 changes: 1 addition & 1 deletion tools/src/ocibuild/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module local

go 1.21
go 1.22

require github.com/datawire/ocibuild v0.0.3-0.20220131233601-25ee488931d1

Expand Down
2 changes: 1 addition & 1 deletion tools/src/yq/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module local

go 1.21
go 1.22

require github.com/mikefarah/yq/v3 v3.0.0-20201202084205-8846255d1c37

Expand Down

0 comments on commit 73a7f57

Please sign in to comment.