Update all dependencies, conforming to the new controller-runtime API (#3949)

This commit is contained in:
Nikola Jokic
2025-03-11 15:52:52 +01:00
committed by GitHub
parent a325cc745a
commit fb9b96bf75
54 changed files with 20471 additions and 5249 deletions

View File

@@ -654,7 +654,7 @@ func (e *env) checkGitHubToken(t *testing.T, tok string) error {
t.Logf("%v", ioerr)
return err
}
t.Logf(string(b))
t.Log(string(b))
return err
}
@@ -667,7 +667,7 @@ func (e *env) checkGitHubToken(t *testing.T, tok string) error {
t.Logf("%v", ioerr)
return err
}
t.Logf(string(b))
t.Log(string(b))
return err
}
}
@@ -679,7 +679,7 @@ func (e *env) checkGitHubToken(t *testing.T, tok string) error {
t.Logf("%v", ioerr)
return err
}
t.Logf(string(b))
t.Log(string(b))
return err
}
}
@@ -693,7 +693,7 @@ func (e *env) checkGitHubToken(t *testing.T, tok string) error {
t.Logf("%v", ioerr)
return err
}
t.Logf(string(b))
t.Log(string(b))
return err
}
}
@@ -1045,7 +1045,7 @@ func installActionsWorkflow(t *testing.T, testName, runnerLabel, testResultCMNam
var container string
if kubernetesContainerMode {
container = "golang:1.18"
container = "golang:1.24"
}
for _, j := range testJobs {
@@ -1106,7 +1106,7 @@ func installActionsWorkflow(t *testing.T, testName, runnerLabel, testResultCMNam
testing.Step{
Uses: "actions/setup-go@v3",
With: &testing.With{
GoVersion: "1.22.4",
GoVersion: "1.24.0",
},
},
)
@@ -1236,7 +1236,7 @@ func installActionsWorkflow(t *testing.T, testName, runnerLabel, testResultCMNam
testing.Step{
Uses: "azure/setup-kubectl@v1",
With: &testing.With{
Version: "v1.22.4",
Version: "v1.24.0",
},
},
testing.Step{