Skip to content

Commit 79c48bf

Browse files
committed
bump go 1.24.2
1 parent 2343be5 commit 79c48bf

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
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

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# https://golangci-lint.run/usage/linters/
55

66
run:
7-
go: '1.23'
7+
go: '1.24'
88
timeout: 10m
99
issues-exit-code: 1
1010
tests: true

build/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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
88
RUN apk update && apk add --no-cache make git bash ca-certificates
99
WORKDIR /app
1010
ARG TARGETOS TARGETARCH

build/docker/debug.Dockerfile

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

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.23
3+
go 1.24.2
44

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

scripts/go.mk

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

1414
.PHONY: mod
1515
mod:
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
@@ -23,7 +23,7 @@ mod:
2323
.PHONY: go-deps-upgrade
2424
go-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

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.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.

0 commit comments

Comments
 (0)