Skip to content

Commit e5f2247

Browse files
committed
BUILD/MINOR: upgrade go version
1 parent b1e289d commit e5f2247

File tree

10 files changed

+12
-14
lines changed

10 files changed

+12
-14
lines changed

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ variables:
1111
KIND: v0.21.0
1212
DOCKER_HOST: tcp://docker:2375
1313
DOCKER_DRIVER: overlay2
14-
GO_VERSION: "1.23"
14+
GO_VERSION: "1.24"
1515
DOCKER_VERSION: "26.0"
1616
diff:
1717
stage: diff

.golangci.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ linters:
2525
- goconst
2626
- gocyclo
2727
- godot
28-
- gomnd
2928
- lll
3029
- nestif
3130
- nlreturn
@@ -41,13 +40,13 @@ linters:
4140
- depguard
4241
- mnd
4342
- inamedparam
44-
- err113 # maybe tmp disable
4543
- asasalint
46-
- exportloopref # deprecated
47-
- execinquery # deprecated
44+
- err113 # maybe tmp disable
4845
- tagliatelle
4946
- testifylint
5047
- typecheck
48+
- recvcheck # maybe tmp disable
49+
- tenv # deprecated
5150
issues:
5251
exclude:
5352
- "tag is not aligned, should be:" # this is harder to read

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PROJECT_PATH=${PWD}
22
TARGETPLATFORM?=linux/amd64
33
GOOS?=linux
44
GOARCH?=amd64
5-
GOLANGCI_LINT_VERSION=1.61.0
5+
GOLANGCI_LINT_VERSION=1.64.5
66

77
.PHONY: test
88
test:

build/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.23-alpine AS builder
15+
FROM golang:1.24-alpine AS builder
1616

1717
RUN apk --no-cache add git openssh
1818

build/Dockerfile.pebble

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.23-alpine AS builder
15+
FROM golang:1.24-alpine AS builder
1616

1717
RUN apk --no-cache add git openssh
1818

deploy/tests/images/http-echo/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23-alpine AS builder
1+
FROM golang:1.24-alpine AS builder
22

33
COPY *.go /src/
44
COPY go.mod /src/go.mod

deploy/tests/images/http-echo/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module echo-http
22

3-
go 1.23
3+
go 1.24

deploy/tests/integration/base-suite.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
package integration
1616

1717
import (
18-
"fmt"
1918
"os"
2019
"path/filepath"
2120
"strings"
@@ -171,5 +170,5 @@ func (suite *BaseSuite) ExpectHaproxyConfigContains(s string, count int) {
171170
suite.T().Error(err.Error())
172171
}
173172
c := strings.Count(string(content), s)
174-
suite.Exactly(count, c, fmt.Sprintf("%s is repeated %d times but expected %d", s, c, count))
173+
suite.Exactly(count, c, "%s is repeated %d times but expected %d", s, c, count)
175174
}

documentation/gen/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module doc-gen
22

3-
go 1.15
3+
go 1.24
44

55
require (
66
github.com/google/renameio v1.0.1

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/haproxytech/kubernetes-ingress
22

3-
go 1.23
3+
go 1.24.0
44

55
require (
66
github.com/Masterminds/semver/v3 v3.2.1

0 commit comments

Comments
 (0)