From b96196a542a7ef90e518b0d73dd4f35e8b025f41 Mon Sep 17 00:00:00 2001 From: andrew Date: Mon, 17 Mar 2025 20:33:53 +0300 Subject: [PATCH] repo name --- gitlabcivalidator/parser.go | 2 +- gitlabcivalidator/validator.go | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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