Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: golangci/golangci-lint-action@v6
with:
args: --timeout=30m
version: v1.63
version: v1.64

# Run Spectral
- name: Lint OpenAPI spec
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ CONTROLLER_GEN=$(shell which controller-gen)
endif

golangci-lint:
@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
@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

# Run the golangci-lint tool
.PHONY: go-lint
Expand Down
2 changes: 1 addition & 1 deletion cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ options:
substitution_option: ALLOW_LOOSE
machineType: 'N1_HIGHCPU_8'
steps:
- name: 'docker.io/library/golang:1.23-bookworm'
- name: 'docker.io/library/golang:1.24-bookworm'
entrypoint: make
env:
- VERSION=$_GIT_TAG
Expand Down
4 changes: 2 additions & 2 deletions docs/contributing/dev-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The `external-dns` is the work of thousands of contributors, and is maintained b
Building and/or testing `external-dns` requires additional tooling.

- [Git](https://git-scm.com/downloads)
- [Go 1.23+](https://golang.org/dl/)
- [Go 1.24+](https://golang.org/dl/)
- [Go modules](https://github.com/golang/go/wiki/Modules)
- [golangci-lint](https://github.com/golangci/golangci-lint)
- [ko](https://ko.build/)
Expand Down Expand Up @@ -229,4 +229,4 @@ Install required dependencies. In order to not to break system packages, we are
❯❯ mkdocs serve
$$ ...
$$ Serving on http://127.0.0.1:8000/
```
```
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module sigs.k8s.io/external-dns

go 1.23.5
go 1.24.0

require (
cloud.google.com/go/compute/metadata v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion provider/azure/cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/stretchr/testify/assert"
)

func TestzonesCache(t *testing.T) {
func TestZonesCache(t *testing.T) {
now := time.Now()
zoneName := "example.com"
var testCases = map[string]struct {
Expand Down
Loading