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

chore: Bump Go to 1.23 #5985

Merged
merged 1 commit into from
Oct 30, 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
2 changes: 1 addition & 1 deletion cmd/debug-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM golang:1.22
FROM golang:1.23
WORKDIR /build
COPY . .
ENV CGO_ENABLED=0
Expand Down
2 changes: 1 addition & 1 deletion contrib/executor/ginkgo/build/agent/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM golang:1.22-alpine as base
FROM golang:1.23-alpine as base

RUN apk update;
RUN go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo
Expand Down
2 changes: 1 addition & 1 deletion contrib/executor/k6/build/agent/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22 as builder
FROM golang:1.23 as builder
# # build k6 0.36.0 with prometheus support
ENV K6_VERSION=v0.48.0
RUN go install go.k6.io/xk6/cmd/[email protected] && xk6 build $K6_VERSION --with github.com/grafana/xk6-output-prometheus-remote@latest
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/kubeshop/testkube

go 1.22.3
go 1.23.2

require (
github.com/99designs/gqlgen v0.17.27
Expand Down
Loading