Skip to content

Commit

Permalink
Merge pull request #37 from slok/slok/go123
Browse files Browse the repository at this point in the history
Update to go 1.23
  • Loading branch information
slok authored Aug 31, 2024
2 parents 34840e5 + 2c5becc commit b13a498
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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

0 comments on commit b13a498

Please sign in to comment.