Skip to content

Commit

Permalink
fix: go 1.22.3
Browse files Browse the repository at this point in the history
  • Loading branch information
LeKovr committed Nov 17, 2024
1 parent 3dadc77 commit 5e09fe9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ARG GOLANG_IMAGE=golang
ARG GOLANG_VERSION=1.21-alpine3.18
ARG GOLANG_VERSION=1.22.3-alpine3.20
ARG APP=narra

FROM --platform=$BUILDPLATFORM ${GOLANG_IMAGE}:${GOLANG_VERSION} as build
FROM --platform=$BUILDPLATFORM ${GOLANG_IMAGE}:${GOLANG_VERSION} AS build

ARG APP
ARG GOPROXY TARGETOS TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ PRG_DEST ?= $(PRG)
# Build config

GO ?= go
GOLANG_VERSION = 1.21-alpine3.18
GOLANG_VERSION = 1.22.3-alpine3.20

SOURCES = $(shell find . -maxdepth 3 -mindepth 1 -path ./var -prune -o -name '*.go')
APP_VERSION ?= $(shell git describe --tags --always)
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/dopos/narra

go 1.22.7
go 1.22.3

toolchain go1.23.2

Expand Down

0 comments on commit 5e09fe9

Please sign in to comment.