@@ -17,7 +17,7 @@ package cmd
1717
1818import (
1919 "github.com/chainloop-dev/chainloop/app/cli/cmd/output"
20- "github.com/chainloop-dev/chainloop/app/cli/internal /action"
20+ "github.com/chainloop-dev/chainloop/app/cli/pkg /action"
2121 "github.com/spf13/cobra"
2222)
2323
@@ -36,13 +36,13 @@ func newAttachedIntegrationAttachCmd() *cobra.Command {
3636 chainloop integration attached add --workflow deadbeef --project my-project --integration dependency-track --opt projectName=MyProject --opt filter="environment=prod,team=security"` ,
3737 RunE : func (_ * cobra.Command , _ []string ) error {
3838 // Find the integration to extract the kind of integration we care about
39- integration , err := action .NewRegisteredIntegrationDescribe (actionOpts ).Run (integrationName )
39+ integration , err := action .NewRegisteredIntegrationDescribe (ActionOpts ).Run (integrationName )
4040 if err != nil {
4141 return err
4242 }
4343
4444 // Retrieve schema for validation and options marshaling
45- item , err := action .NewAvailableIntegrationDescribe (actionOpts ).Run (integration .Kind )
45+ item , err := action .NewAvailableIntegrationDescribe (ActionOpts ).Run (integration .Kind )
4646 if err != nil {
4747 return err
4848 }
@@ -57,7 +57,7 @@ func newAttachedIntegrationAttachCmd() *cobra.Command {
5757 return err
5858 }
5959
60- res , err := action .NewAttachedIntegrationAdd (actionOpts ).Run (integrationName , workflowName , projectName , opts )
60+ res , err := action .NewAttachedIntegrationAdd (ActionOpts ).Run (integrationName , workflowName , projectName , opts )
6161 if err != nil {
6262 return err
6363 }
0 commit comments