diff --git a/modules/actions/jobparser/evaluator.go b/modules/actions/jobparser/evaluator.go index 1c030255da..b320095071 100644 --- a/modules/actions/jobparser/evaluator.go +++ b/modules/actions/jobparser/evaluator.go @@ -9,7 +9,7 @@ import ( "regexp" "strings" - "github.com/nektos/act/exprparser" + "github.com/nektos/act/pkg/exprparser" "go.yaml.in/yaml/v4" ) diff --git a/modules/actions/jobparser/interpeter.go b/modules/actions/jobparser/interpeter.go index 2d35fde163..512b6f02ab 100644 --- a/modules/actions/jobparser/interpeter.go +++ b/modules/actions/jobparser/interpeter.go @@ -4,8 +4,8 @@ package jobparser import ( - "github.com/nektos/act/exprparser" - "github.com/nektos/act/model" + "github.com/nektos/act/pkg/exprparser" + "github.com/nektos/act/pkg/model" "go.yaml.in/yaml/v4" ) diff --git a/modules/actions/jobparser/jobparser.go b/modules/actions/jobparser/jobparser.go index 192f451ec9..16903bc9af 100644 --- a/modules/actions/jobparser/jobparser.go +++ b/modules/actions/jobparser/jobparser.go @@ -9,8 +9,8 @@ import ( "sort" "strings" - "github.com/nektos/act/exprparser" - "github.com/nektos/act/model" + "github.com/nektos/act/pkg/exprparser" + "github.com/nektos/act/pkg/model" "go.yaml.in/yaml/v4" ) diff --git a/modules/actions/jobparser/model.go b/modules/actions/jobparser/model.go index 952caf0772..7132c278e9 100644 --- a/modules/actions/jobparser/model.go +++ b/modules/actions/jobparser/model.go @@ -8,7 +8,7 @@ import ( "errors" "fmt" - "github.com/nektos/act/model" + "github.com/nektos/act/pkg/model" "go.yaml.in/yaml/v4" ) diff --git a/modules/actions/jobparser/model_test.go b/modules/actions/jobparser/model_test.go index 74b10dc4af..d0e8204161 100644 --- a/modules/actions/jobparser/model_test.go +++ b/modules/actions/jobparser/model_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/nektos/act/model" + "github.com/nektos/act/pkg/model" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "go.yaml.in/yaml/v4" diff --git a/modules/actions/workflows.go b/modules/actions/workflows.go index 61b213b311..ba1aee7d72 100644 --- a/modules/actions/workflows.go +++ b/modules/actions/workflows.go @@ -17,8 +17,8 @@ import ( "code.gitea.io/gitea/modules/util" webhook_module "code.gitea.io/gitea/modules/webhook" - "github.com/nektos/act/model" - "github.com/nektos/act/workflowpattern" + "github.com/nektos/act/pkg/model" + "github.com/nektos/act/pkg/workflowpattern" "go.yaml.in/yaml/v4" )