Skip to content

Commit 0a6208e

Browse files
authored
Bump Go patch version to 1.22.4 (#3593)
1 parent 2cc793a commit 0a6208e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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.1 as builder
2+
FROM --platform=$BUILDPLATFORM golang:1.22.4 as builder
33

44
WORKDIR /workspace
55

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/actions/actions-runner-controller
22

3-
go 1.22.1
3+
go 1.22.4
44

55
require (
66
github.com/bradleyfalzon/ghinstallation/v2 v2.8.0

test/e2e/e2e_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.1",
1109+
GoVersion: "1.22.4",
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.1",
1239+
Version: "v1.22.4",
12401240
},
12411241
},
12421242
testing.Step{

testing/testing.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ nodes:
355355
image: %s
356356
`, k.Name, image, image))
357357

358-
if err := os.WriteFile(f.Name(), kindConfig, 0644); err != nil {
358+
if err := os.WriteFile(f.Name(), kindConfig, 0o644); err != nil {
359359
return err
360360
}
361361

@@ -385,7 +385,7 @@ func (k *Kind) LoadImages(ctx context.Context, images []ContainerImage) error {
385385
}
386386

387387
tmpDir := filepath.Join(wd, ".testing", k.Name)
388-
if err := os.MkdirAll(tmpDir, 0755); err != nil {
388+
if err := os.MkdirAll(tmpDir, 0o755); err != nil {
389389
return err
390390
}
391391
defer func() {

0 commit comments

Comments
 (0)