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 up necoperf v0.1.3 #27

Closed
wants to merge 3 commits into from
Closed
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 Dockerfile.cli
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/cybozu/golang:1.22-jammy as builder
FROM ghcr.io/cybozu/golang:1.23-jammy as builder
WORKDIR /work
COPY go.mod go.mod
COPY go.sum go.sum
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.daemon
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FLATCAR_VERSION
FROM ghcr.io/cybozu/golang:1.22-jammy as builder
FROM ghcr.io/cybozu/golang:1.23-jammy as builder

WORKDIR /work
COPY go.mod go.mod
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ ENVTEST ?= $(BIN_DIR)/setup-envtest
# Tool versions
MDBOOK_VERSION = 0.4.27
PROTOC_VERSION = 24.2
PROTOC_GEN_GO_VERSION = 1.31.0
PROTOC_GEN_GO_GRPC_VERSION = 1.3.0
PROTOC_GEN_GO_VERSION = 1.35.2
PROTOC_GEN_GO_GRPC_VERSION = 1.5.1
PROTOC_GEN_DOC_VERSION = 1.5.1
MDBOOK := $(BIN_DIR)/mdbook

Expand Down
4 changes: 2 additions & 2 deletions Makefile.versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
E2ETEST_K8S_VERSION := 1.30.0
E2ETEST_K8S_VERSION := 1.30.3
# ref to https://github.com/orgs/flatcar/packages/container/package/flatcar-sdk-amd64
FLATCAR_VERSION := 3815.2.2
FLATCAR_VERSION := 4081.0.0
KIND_VERSION := 0.23.0
KUSTOMIZE_VERSION := 5.4.1
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/cybozu-go/necoperf

go 1.22.0
go 1.23.0

toolchain go1.22.6
toolchain go1.23.3

require (
github.com/google/uuid v1.6.0
Expand All @@ -21,8 +21,8 @@ require (
k8s.io/apimachinery v0.30.1
k8s.io/client-go v0.30.1
k8s.io/cri-api v0.30.1
k8s.io/kubernetes v1.30.1
sigs.k8s.io/controller-runtime v0.18.4
k8s.io/kubernetes v0.30.1
sigs.k8s.io/controller-runtime v0.19.1
)

require (
Expand Down
Loading