Skip to content

Commit 3884ea1

Browse files
authored
Merge pull request #918 from mackerelio/go124
use Go 1.24
2 parents 7948915 + 0bf0997 commit 3884ea1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
${{ runner.os }}-go-
5454
- uses: actions/setup-go@v5
5555
with:
56-
go-version: 1.23.x
56+
go-version: 1.24.x
5757
- uses: actions/checkout@v4
5858
with:
5959
fetch-depth: 0

check-smtp/lib/check-smtp_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func (m *mockSMTPServer) runServe() error {
3939
tc := textproto.NewConn(conn)
4040

4141
for _, res := range m.responses {
42-
if err := tc.PrintfLine(res); err != nil { // nolint
42+
if err := tc.PrintfLine("%s", res); err != nil { // nolint
4343
errCh <- err
4444
return
4545
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/mackerelio/go-check-plugins
22

33
go 1.23.0
44

5-
toolchain go1.23.7
5+
toolchain go1.24.3
66

77
require (
88
github.com/StackExchange/wmi v1.2.1

0 commit comments

Comments
 (0)