Skip to content

Commit

Permalink
chore: Bump core
Browse files Browse the repository at this point in the history
  • Loading branch information
keskad committed Nov 7, 2023
1 parent e5d3adc commit c6a98ea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/kube-cicd/pipelines-feedback-tekton
go 1.20

require (
github.com/kube-cicd/pipelines-feedback-core v0.0.0-20231106125036-f4ab1a8c1eef
github.com/kube-cicd/pipelines-feedback-core v0.0.0-20231107214332-2d6cc283fb5b
github.com/pkg/errors v0.9.1
github.com/tektoncd/pipeline v0.49.0
k8s.io/apimachinery v0.28.3
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/kube-cicd/pipelines-feedback-core v0.0.0-20231107214332-2d6cc283fb5b h1:QK+2XopgZDouafeY4frwGOMSSPSKyk+9R84iwD/bSVU=
github.com/kube-cicd/pipelines-feedback-core v0.0.0-20231107214332-2d6cc283fb5b/go.mod h1:lR+kCNBZTHxFZrWsZbA+V1PsjkwUDLs4lmgKlBN6xoo=
github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
Expand Down
4 changes: 2 additions & 2 deletions pkgs/core/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
type PipelineRunProvider struct {
store *store.Operator
logger *logging.InternalLogger
confProvider *config.ConfigurationProvider
confProvider config.ConfigurationProviderInterface
client v1Client.TektonV1Interface
}

Expand All @@ -35,7 +35,7 @@ func (prp *PipelineRunProvider) InitializeWithContext(sc *wiring.ServiceContext)

prp.store = sc.Store
prp.logger = sc.Log
prp.confProvider = &sc.Config
prp.confProvider = sc.Config

return nil
}
Expand Down

0 comments on commit c6a98ea

Please sign in to comment.