File tree Expand file tree Collapse file tree 7 files changed +11
-14
lines changed
Expand file tree Collapse file tree 7 files changed +11
-14
lines changed Original file line number Diff line number Diff line change 1212 ci :
1313 name : Lints and Tests
1414 runs-on : ubuntu-latest
15- # strategy:
16- # matrix:
17- # go-version: [ '1.22', '1.23' ]
1815 steps :
1916
2017 # https://github.com/actions/checkout
2421 - name : Set up Go
2522 uses : actions/setup-go@v5
2623 with :
27- go-version : " 1.24 .x"
24+ go-version : " 1.25 .x"
2825 check-latest : true
2926 cache : false
3027
Original file line number Diff line number Diff line change 66
77version : " 2"
88run :
9- go : " 1.24 "
9+ go : " 1.25 "
1010 build-tags :
1111 - integration
1212 modules-download-mode : readonly
Original file line number Diff line number Diff line change 1- # syntax=docker/dockerfile:1.12
1+ # syntax=docker/dockerfile:1.18
22# ## https://hub.docker.com/r/docker/dockerfile
33
44# https://docs.docker.com/build/guide/mounts/
55
66# https://hub.docker.com/_/golang
7- FROM --platform=$BUILDPLATFORM golang:1.24.2 -alpine3.21 AS builder
7+ FROM --platform=$BUILDPLATFORM golang:1.25.1 -alpine3.22 AS builder
88RUN apk update && apk add --no-cache make git bash ca-certificates
99WORKDIR /app
1010ARG TARGETOS TARGETARCH
@@ -15,7 +15,7 @@ RUN --mount=type=bind,target=. \
1515
1616# FROM scratch
1717# COPY --from=builder /etc/ssl/certs/ /etc/ssl/certs
18- FROM alpine:3.21
18+ FROM alpine:3.22
1919RUN apk add --no-cache ca-certificates
2020WORKDIR /app
2121COPY --from=builder /tmp/out/* /app/
Original file line number Diff line number Diff line change 1- # syntax=docker/dockerfile:1.12
1+ # syntax=docker/dockerfile:1.18
22# ## https://hub.docker.com/r/docker/dockerfile
33
44# https://hub.docker.com/_/golang
5- FROM golang:1.24.2 -alpine3.21
5+ FROM golang:1.25.1 -alpine3.22
66
77WORKDIR /wd
88
Original file line number Diff line number Diff line change 11module github.com/moukoublen/goboilerplate
22
3- go 1.24.2
3+ go 1.25.0
44
55require (
66 github.com/go-chi/chi/v5 v5.2.3
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ BUILD_OUTPUT ?= $(CURDIR)/output
1111
1212.PHONY : mod
1313mod :
14- go mod tidy -go=1.24.2
14+ go mod tidy
1515 go mod verify
1616
1717# https://go.dev/ref/mod#go-get
2121.PHONY : go-deps-upgrade
2222go-deps-upgrade :
2323 go get -u -t ./...
24- go mod tidy -go=1.24.2
24+ go mod tidy
2525
2626# https://pkg.go.dev/cmd/go#hdr-Compile_packages_and_dependencies
2727# 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.24.2
3+ go 1.25.0
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