Skip to content

Commit 8d26d04

Browse files
authored
Merge pull request #29 from grishy/sg-go-1.24.0
chore: update Go version to 1.24.0
2 parents 9534fff + 3b4a55f commit 8d26d04

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/commit.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: actions/setup-go@v5
1717
with:
18-
go-version: "1.23.5"
18+
go-version: "1.24.0"
1919

2020
- run: go mod verify
2121

2222
- run: go test -v ./...
2323

2424
- uses: golangci/golangci-lint-action@v6
2525
with:
26-
version: v1.63.4
26+
version: v1.64.5
2727

2828
build:
2929
runs-on: ubuntu-24.04
3030
steps:
3131
- uses: actions/checkout@v4
3232
- uses: actions/setup-go@v5
3333
with:
34-
go-version: "1.23.5"
34+
go-version: "1.24.0"
3535

3636
- name: Set up QEMU for cross-compilation of Docker images
3737
uses: docker/setup-qemu-action@v3

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-go@v5
2121
with:
22-
go-version: "1.23.5"
22+
go-version: "1.24.0"
2323

2424
- name: Set up QEMU for cross-compilation of Docker images
2525
uses: docker/setup-qemu-action@v3

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Need a lot of additional configuration to build multi-arch images
55

66
# STAGE 1: building the executable
7-
FROM docker.io/golang:1.23.5-alpine3.20 AS builder
7+
FROM docker.io/golang:1.24.0-alpine3.20 AS builder
88
WORKDIR /build
99

1010
ARG VERSION

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/grishy/go-avahi-cname
22

3-
go 1.23.5
3+
go 1.24.0
44

55
require (
66
github.com/caarlos0/go-version v0.2.0

0 commit comments

Comments
 (0)