We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8834ab0 + f776e2d commit f51b62dCopy full SHA for f51b62d
5 files changed
.github/workflows/loadtest.yml
@@ -54,7 +54,7 @@ jobs:
54
- name: Set up Go
55
uses: actions/setup-go@v5
56
with:
57
- go-version: '1.25'
+ go-version: '1.26'
58
cache: false
59
60
- name: Set up Docker Buildx
Dockerfile
@@ -2,7 +2,7 @@ ARG BUILDER_IMAGE
2
ARG BASE_IMAGE
3
4
# Build the manager binary
5
-FROM --platform=${BUILDPLATFORM} ${BUILDER_IMAGE:-golang:1.25.5} AS builder
+FROM --platform=${BUILDPLATFORM} ${BUILDER_IMAGE:-golang:1.26} AS builder
6
7
ARG TARGETOS
8
ARG TARGETARCH
go.mod
@@ -1,6 +1,6 @@
1
module github.com/stakater/Reloader
-go 1.25.5
+go 1.26
require (
github.com/argoproj/argo-rollouts v1.8.3
internal/pkg/leadership/leadership_test.go
@@ -45,7 +45,7 @@ func TestHealthz(t *testing.T) {
45
want := 200
46
47
if got != want {
48
- t.Fatalf("got: %q, want: %q", got, want)
+ t.Fatalf("got: %d, want: %d", got, want)
49
}
50
51
// Have the liveness probe serve a 500
@@ -63,7 +63,7 @@ func TestHealthz(t *testing.T) {
63
want = 500
64
65
66
67
68
69
@@ -89,7 +89,7 @@ func TestRunLeaderElection(t *testing.T) {
89
want := 500
90
91
92
93
94
95
// Cancel the leader election context, so leadership is released and
@@ -108,7 +108,7 @@ func TestRunLeaderElection(t *testing.T) {
108
109
110
111
112
113
114
test/loadtest/go.mod
module github.com/stakater/Reloader/test/loadtest
-go 1.25
github.com/spf13/cobra v1.8.1
0 commit comments