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/loadtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
go-version: '1.26'
cache: false

- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG BUILDER_IMAGE
ARG BASE_IMAGE

# Build the manager binary
FROM --platform=${BUILDPLATFORM} ${BUILDER_IMAGE:-golang:1.25.5} AS builder
FROM --platform=${BUILDPLATFORM} ${BUILDER_IMAGE:-golang:1.26} AS builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/stakater/Reloader

go 1.25.5
go 1.26

require (
github.com/argoproj/argo-rollouts v1.8.3
Expand Down
8 changes: 4 additions & 4 deletions internal/pkg/leadership/leadership_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestHealthz(t *testing.T) {
want := 200

if got != want {
t.Fatalf("got: %q, want: %q", got, want)
t.Fatalf("got: %d, want: %d", got, want)
}

// Have the liveness probe serve a 500
Expand All @@ -63,7 +63,7 @@ func TestHealthz(t *testing.T) {
want = 500

if got != want {
t.Fatalf("got: %q, want: %q", got, want)
t.Fatalf("got: %d, want: %d", got, want)
}
}

Expand All @@ -89,7 +89,7 @@ func TestRunLeaderElection(t *testing.T) {
want := 500

if got != want {
t.Fatalf("got: %q, want: %q", got, want)
t.Fatalf("got: %d, want: %d", got, want)
}

// Cancel the leader election context, so leadership is released and
Expand All @@ -108,7 +108,7 @@ func TestRunLeaderElection(t *testing.T) {
want = 500

if got != want {
t.Fatalf("got: %q, want: %q", got, want)
t.Fatalf("got: %d, want: %d", got, want)
}
}

Expand Down
2 changes: 1 addition & 1 deletion test/loadtest/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/stakater/Reloader/test/loadtest

go 1.25
go 1.26

require (
github.com/spf13/cobra v1.8.1
Expand Down
Loading