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

Update to go 1.23 #37

Merged
merged 1 commit into from
Aug 31, 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 _example/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
IMAGE := ghcr.io/slok/kube-code-generator:v0.2.0-amd64
IMAGE := ghcr.io/slok/kube-code-generator:v0.3.0-amd64

DIRECTORY := $(PWD)
DEPS_CMD := go mod tidy
Expand Down
2 changes: 1 addition & 1 deletion docker/dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22
FROM golang:1.23

ARG GOLANGCI_LINT_VERSION="1.60.3"
ARG MOCKERY_VERSION="2.45.0"
Expand Down
4 changes: 2 additions & 2 deletions docker/prod/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Set also `ARCH` ARG here so we can use it on all the `FROM`s.
ARG ARCH

FROM golang:1.22 as build-stage
FROM golang:1.23 as build-stage

# Required by the built script for setting verion and cross-compiling.
ARG VERSION
Expand All @@ -14,7 +14,7 @@ WORKDIR /src
COPY . .
RUN ./scripts/build/bin/build-raw.sh

FROM golang:1.22
FROM golang:1.23
ARG CODEGEN_VERSION="1.31.0"
ARG CONTROLLER_GEN_VERSION="0.16.2"

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/slok/kube-code-generator

go 1.22.0
go 1.23.0

require (
github.com/alecthomas/kingpin/v2 v2.4.0
Expand Down