Skip to content

Commit 452c808

Browse files
committed
go 1.23.6
1 parent 594c664 commit 452c808

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [0.27.1] - 2025-03-05
9+
10+
* update build for golang 1.23.6
11+
812
## [0.27.0] - 2025-03-05
913

1014
* code changes

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG GOLANG_IMAGE=golang
2-
ARG GOLANG_VERSION=1.22.3-alpine3.20
2+
ARG GOLANG_VERSION=1.23.6-alpine3.21
33
ARG APP=narra
44

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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ PRG_DEST ?= $(PRG)
1111
# Build config
1212

1313
GO ?= go
14-
GOLANG_VERSION = 1.22.3-alpine3.20
14+
GOLANG_VERSION = 1.23.6-alpine3.21
1515

1616
SOURCES = $(shell find . -maxdepth 3 -mindepth 1 -path ./var -prune -o -name '*.go')
1717
APP_VERSION ?= $(shell git describe --tags --always)

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/dopos/narra
22

3-
go 1.23.0
4-
5-
toolchain go1.23.6
3+
go 1.23.6
64

75
require (
86
github.com/LeKovr/go-kit/config v0.5.1

0 commit comments

Comments
 (0)