Skip to content

Commit f09124c

Browse files
authored
Merge pull request #5106 from mloiseleur/chore/go-1.24
chore: upgrade ExternalDNS to go 1.24
2 parents e665a73 + a3ac49e commit f09124c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
with:
4545
verify: true
4646
args: --timeout=30m
47-
version: v1.63
47+
version: v1.64
4848

4949
# Run Spectral
5050
- name: Lint OpenAPI spec

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ endif
3737

3838
#? golangci-lint: Install golangci-lint tool
3939
golangci-lint:
40-
@command -v golangci-lint > /dev/null || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.63.4
40+
@command -v golangci-lint > /dev/null || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.64.5
4141

4242
#? golangci-lint-verify: Verify golangci-lint configuration
4343
golangci-lint-verify: golangci-lint

cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ options:
44
substitution_option: ALLOW_LOOSE
55
machineType: 'N1_HIGHCPU_8'
66
steps:
7-
- name: 'docker.io/library/golang:1.23-bookworm'
7+
- name: 'docker.io/library/golang:1.24-bookworm'
88
entrypoint: make
99
env:
1010
- VERSION=$_GIT_TAG

docs/contributing/dev-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The `external-dns` is the work of thousands of contributors, and is maintained b
77
Building and/or testing `external-dns` requires additional tooling.
88

99
- [Git](https://git-scm.com/downloads)
10-
- [Go 1.23+](https://golang.org/dl/)
10+
- [Go 1.24+](https://golang.org/dl/)
1111
- [Go modules](https://github.com/golang/go/wiki/Modules)
1212
- [golangci-lint](https://github.com/golangci/golangci-lint)
1313
- [ko](https://ko.build/)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module sigs.k8s.io/external-dns
22

3-
go 1.23.5
3+
go 1.24.0
44

55
require (
66
cloud.google.com/go/compute/metadata v0.6.0

provider/azure/cache_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"github.com/stretchr/testify/assert"
2525
)
2626

27-
func TestzonesCache(t *testing.T) {
27+
func TestZonesCache(t *testing.T) {
2828
now := time.Now()
2929
zoneName := "example.com"
3030
var testCases = map[string]struct {

0 commit comments

Comments
 (0)