Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update module github.com/alitto/pond to v2 #265

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ toolchain go1.22.7

require (
github.com/Masterminds/semver/v3 v3.3.0
github.com/alitto/pond v1.9.2
github.com/alitto/pond/v2 v2.1.1
github.com/cyphar/filepath-securejoin v0.3.4
github.com/docker/cli v27.3.1+incompatible
github.com/drone/envsubst v1.0.3
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ github.com/alibabacloud-go/tea-utils/v2 v2.0.6/go.mod h1:qxn986l+q33J5VkialKMqT/
github.com/alibabacloud-go/tea-xml v1.1.2/go.mod h1:Rq08vgCcCAjHyRi/M7xlHKUykZCEtyBy9+DPF6GgEu8=
github.com/alibabacloud-go/tea-xml v1.1.3 h1:7LYnm+JbOq2B+T/B0fHC4Ies4/FofC4zHzYtqw7dgt0=
github.com/alibabacloud-go/tea-xml v1.1.3/go.mod h1:Rq08vgCcCAjHyRi/M7xlHKUykZCEtyBy9+DPF6GgEu8=
github.com/alitto/pond v1.9.2 h1:9Qb75z/scEZVCoSU+osVmQ0I0JOeLfdTDafrbcJ8CLs=
github.com/alitto/pond v1.9.2/go.mod h1:xQn3P/sHTYcU/1BR3i86IGIrilcrGC2LiS+E2+CJWsI=
github.com/alitto/pond/v2 v2.1.1 h1:TuWRku1wrjyR3J4LR2KuxIr+2Hm0YxqKFuX3Sz+egoc=
github.com/alitto/pond/v2 v2.1.1/go.mod h1:xkjYEgQ05RSpWdfSd1nM3OVv7TBhLdy7rMp3+2Nq+yE=
github.com/aliyun/credentials-go v1.1.2/go.mod h1:ozcZaMR5kLM7pwtCMEpVmQ242suV6qTJya2bDq4X1Tw=
github.com/aliyun/credentials-go v1.3.6/go.mod h1:1LxUuX7L5YrZUWzBrRyk0SwSdH4OmPrib8NVePL3fxM=
github.com/aliyun/credentials-go v1.3.9 h1:xz4W+ebo2xlq5LXshm4YLz7P7ZfmQaNYGTx+Lm0HbQ4=
Expand Down
2 changes: 1 addition & 1 deletion internal/action/action.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"os"
"runtime/debug"

"github.com/alitto/pond"
"github.com/alitto/pond/v2"
"github.com/doodlescheduling/flux-build/internal/build"
chartcache "github.com/doodlescheduling/flux-build/internal/helm/chart/cache"
helmv1 "github.com/fluxcd/helm-controller/api/v2beta1"
Expand Down Expand Up @@ -39,10 +39,10 @@
}

var lastErr error
helmResultPool := pond.New(1, 1, pond.Context(ctx), pond.PanicHandler(panicHandler))

Check failure on line 42 in internal/action/action.go

View workflow job for this annotation

GitHub Actions / build

undefined: pond.New

Check failure on line 42 in internal/action/action.go

View workflow job for this annotation

GitHub Actions / build

undefined: pond.Context

Check failure on line 42 in internal/action/action.go

View workflow job for this annotation

GitHub Actions / build

undefined: pond.PanicHandler
kustomizePool := pond.New(len(a.Paths), len(a.Paths), pond.Context(ctx), pond.PanicHandler(panicHandler))

Check failure on line 43 in internal/action/action.go

View workflow job for this annotation

GitHub Actions / build

undefined: pond.New

Check failure on line 43 in internal/action/action.go

View workflow job for this annotation

GitHub Actions / build

undefined: pond.Context

Check failure on line 43 in internal/action/action.go

View workflow job for this annotation

GitHub Actions / build

undefined: pond.PanicHandler
helmPool := pond.New(a.Workers, a.Workers, pond.Context(ctx), pond.PanicHandler(panicHandler))

Check failure on line 44 in internal/action/action.go

View workflow job for this annotation

GitHub Actions / build

undefined: pond.New

Check failure on line 44 in internal/action/action.go

View workflow job for this annotation

GitHub Actions / build

undefined: pond.Context

Check failure on line 44 in internal/action/action.go

View workflow job for this annotation

GitHub Actions / build

undefined: pond.PanicHandler
resourcePool := pond.New(1, 1, pond.Context(ctx), pond.PanicHandler(panicHandler))

Check failure on line 45 in internal/action/action.go

View workflow job for this annotation

GitHub Actions / build

undefined: pond.New

defer func() {
if lastErr != nil && !a.AllowFailure {
Expand Down
Loading