Skip to content

Commit 6031787

Browse files
committed
Bump go.mod
1 parent e60a0e1 commit 6031787

3 files changed

Lines changed: 6 additions & 8 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM --platform=$BUILDPLATFORM golang:1.22.4 as builder
2+
FROM --platform=$BUILDPLATFORM golang:1.24.0 as builder
33

44
WORKDIR /workspace
55

go.mod

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/actions/actions-runner-controller
22

3-
go 1.23.0
4-
5-
toolchain go1.24.0
3+
go 1.24.0
64

75
require (
86
github.com/bradleyfalzon/ghinstallation/v2 v2.14.0
@@ -35,6 +33,7 @@ require (
3533
k8s.io/api v0.32.2
3634
k8s.io/apimachinery v0.32.2
3735
k8s.io/client-go v0.32.2
36+
k8s.io/utils v0.0.0-20241210054802-24370beab758
3837
sigs.k8s.io/controller-runtime v0.20.2
3938
sigs.k8s.io/yaml v1.4.0
4039
)
@@ -163,7 +162,6 @@ require (
163162
k8s.io/apiextensions-apiserver v0.32.2 // indirect
164163
k8s.io/klog/v2 v2.130.1 // indirect
165164
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
166-
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
167165
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
168166
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
169167
)

test/e2e/e2e_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ func installActionsWorkflow(t *testing.T, testName, runnerLabel, testResultCMNam
10451045

10461046
var container string
10471047
if kubernetesContainerMode {
1048-
container = "golang:1.18"
1048+
container = "golang:1.24"
10491049
}
10501050

10511051
for _, j := range testJobs {
@@ -1106,7 +1106,7 @@ func installActionsWorkflow(t *testing.T, testName, runnerLabel, testResultCMNam
11061106
testing.Step{
11071107
Uses: "actions/setup-go@v3",
11081108
With: &testing.With{
1109-
GoVersion: "1.22.4",
1109+
GoVersion: "1.24.0",
11101110
},
11111111
},
11121112
)
@@ -1236,7 +1236,7 @@ func installActionsWorkflow(t *testing.T, testName, runnerLabel, testResultCMNam
12361236
testing.Step{
12371237
Uses: "azure/setup-kubectl@v1",
12381238
With: &testing.With{
1239-
Version: "v1.22.4",
1239+
Version: "v1.24.0",
12401240
},
12411241
},
12421242
testing.Step{

0 commit comments

Comments
 (0)