deps: update Go dependencies (#3967)

* deps: update Go dependencies
* deps: hold back terraform-plugin deps
* deps: keep google.golang.org/grpc at v1.74
* fix tests

---------

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
renovate[bot] 2025-10-16 13:29:45 +02:00 committed by GitHub
parent 2360d627aa
commit d119e1f44d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 611 additions and 548 deletions

View file

@ -20,8 +20,9 @@ const _SystemdAction_name = "UnknownStartStopRestartReload"
var _SystemdAction_index = [...]uint8{0, 7, 12, 16, 23, 29}
func (i SystemdAction) String() string {
if i >= SystemdAction(len(_SystemdAction_index)-1) {
idx := int(i) - 0
if i < 0 || idx >= len(_SystemdAction_index)-1 {
return "SystemdAction(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _SystemdAction_name[_SystemdAction_index[i]:_SystemdAction_index[i+1]]
return _SystemdAction_name[_SystemdAction_index[idx]:_SystemdAction_index[idx+1]]
}