diff --git a/gitlabcivalidator/parser.go b/gitlabcivalidator/parser.go index 400d685..c629cb4 100644 --- a/gitlabcivalidator/parser.go +++ b/gitlabcivalidator/parser.go @@ -3,7 +3,7 @@ package gitlabcivalidator import ( "fmt" "gopkg.in/yaml.v3" - "tea.gitpark.ru/Azaki/CI_VALIDATOR/errors" + "tea.gitpark.ru/Azaki/ci_validator/errors" ) // ParseGitLabCIConfig parses the YAML and returns the GitLabCIConfig structure. diff --git a/gitlabcivalidator/validator.go b/gitlabcivalidator/validator.go index 0d3c9fd..0ff72db 100644 --- a/gitlabcivalidator/validator.go +++ b/gitlabcivalidator/validator.go @@ -4,7 +4,7 @@ import ( "fmt" "gopkg.in/yaml.v3" "strings" - "tea.gitpark.ru/Azaki/CI_VALIDATOR/errors" + "tea.gitpark.ru/Azaki/ci_validator/errors" "time" ) diff --git a/go.mod b/go.mod index 87fcd48..a3d2af4 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module tea.gitpark.ru/Azaki/CI_VALIDATOR +module tea.gitpark.ru/Azaki/ci_validator go 1.18