Skip to content

Commit f8b8169

Browse files
committed
chore: cleanup/tidy unused or redundant indirect dependencies
1 parent 6834cdd commit f8b8169

File tree

5 files changed

+7
-17
lines changed

5 files changed

+7
-17
lines changed

pkg/reconciler/taskrun/taskrun.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ func (c *Reconciler) finishReconcileUpdateEmitEvents(ctx context.Context, tr *v1
385385
errs = append(errs, err)
386386
}
387387
}
388-
joinedErr:=errors.Join(errs...)
388+
joinedErr := errors.Join(errs...)
389389
if controller.IsPermanentError(previousError) {
390390
return controller.NewPermanentError(joinedErr)
391391
}

pkg/reconciler/taskrun/validate_taskrun.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import (
2323
"strings"
2424

2525
"errors"
26+
2627
pipelineErrors "github.com/tektoncd/pipeline/pkg/apis/pipeline/errors"
2728
v1 "github.com/tektoncd/pipeline/pkg/apis/pipeline/v1"
2829
"github.com/tektoncd/pipeline/pkg/list"

test/custom-task-ctrls/wait-task-beta/go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ require (
7070
go.uber.org/multierr v1.10.0 // indirect
7171
go.uber.org/zap v1.26.0 // indirect
7272
golang.org/x/exp v0.0.0-20230307190834-24139beb5833 // indirect
73-
golang.org/x/mod v0.17.0 // indirect
7473
golang.org/x/net v0.40.0 // indirect
7574
golang.org/x/oauth2 v0.13.0 // indirect
7675
golang.org/x/sync v0.14.0 // indirect

test/custom-task-ctrls/wait-task-beta/go.sum

Lines changed: 3 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/resolver-with-timeout/go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module resolver_with_timeout
22

3-
go 1.22.8
3+
go 1.23.0
4+
45
toolchain go1.24.1
56

67
require (

0 commit comments

Comments
 (0)