File tree Expand file tree Collapse file tree 7 files changed +8
-8
lines changed
Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 2424 - name : Set up Go
2525 uses : actions/setup-go@v5
2626 with :
27- go-version : " 1.23 .x"
27+ go-version : " 1.24 .x"
2828 check-latest : true
2929 cache : false
3030
Original file line number Diff line number Diff line change 44# https://golangci-lint.run/usage/linters/
55
66run :
7- go : ' 1.23 '
7+ go : ' 1.24 '
88 timeout : 10m
99 issues-exit-code : 1
1010 tests : true
Original file line number Diff line number Diff line change 44# https://docs.docker.com/build/guide/mounts/
55
66# https://hub.docker.com/_/golang
7- FROM --platform=$BUILDPLATFORM golang:1.23.4 -alpine3.21 AS builder
7+ FROM --platform=$BUILDPLATFORM golang:1.24.2 -alpine3.21 AS builder
88RUN apk update && apk add --no-cache make git bash ca-certificates
99WORKDIR /app
1010ARG TARGETOS TARGETARCH
Original file line number Diff line number Diff line change 22# ## https://hub.docker.com/r/docker/dockerfile
33
44# https://hub.docker.com/_/golang
5- FROM golang:1.23.4 -alpine3.21
5+ FROM golang:1.24.2 -alpine3.21
66
77WORKDIR /wd
88
Original file line number Diff line number Diff line change 11module github.com/moukoublen/goboilerplate
22
3- go 1.23
3+ go 1.24.2
44
55require (
66 github.com/go-chi/chi/v5 v5.2.1
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ BUILD_OUTPUT ?= $(CURDIR)/output
1313
1414.PHONY : mod
1515mod :
16- go mod tidy -go=1.23
16+ go mod tidy -go=1.24.2
1717 go mod verify
1818
1919# https://go.dev/ref/mod#go-get
2323.PHONY : go-deps-upgrade
2424go-deps-upgrade :
2525 go get -u -t ./...
26- go mod tidy -go=1.23
26+ go mod tidy -go=1.24.2
2727
2828# https://pkg.go.dev/cmd/go#hdr-Compile_packages_and_dependencies
2929# https://pkg.go.dev/cmd/compile
Original file line number Diff line number Diff line change 11module github.com/moukoublen/pick/tools
22
3- go 1.23.5
3+ go 1.24.2
44
55// tools version goes here.
66// this go.mod is not used to actually run the tools, only to store the version.
You can’t perform that action at this time.
0 commit comments