Skip to content

Commit e620647

Browse files
committed
bump go 1.25
1 parent e9040cc commit e620647

File tree

7 files changed

+11
-14
lines changed

7 files changed

+11
-14
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ jobs:
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
@@ -24,7 +21,7 @@ jobs:
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

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
version: "2"
88
run:
9-
go: "1.24"
9+
go: "1.25"
1010
build-tags:
1111
- integration
1212
modules-download-mode: readonly

build/docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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
88
RUN apk update && apk add --no-cache make git bash ca-certificates
99
WORKDIR /app
1010
ARG 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
1919
RUN apk add --no-cache ca-certificates
2020
WORKDIR /app
2121
COPY --from=builder /tmp/out/* /app/

build/docker/debug.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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

77
WORKDIR /wd
88

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/moukoublen/goboilerplate
22

3-
go 1.24.2
3+
go 1.25.0
44

55
require (
66
github.com/go-chi/chi/v5 v5.2.3

scripts/go.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ BUILD_OUTPUT ?= $(CURDIR)/output
1111

1212
.PHONY: mod
1313
mod:
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
@@ -21,7 +21,7 @@ mod:
2121
.PHONY: go-deps-upgrade
2222
go-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

tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module 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.

0 commit comments

Comments
 (0)