diff --git a/renovate.json b/renovate.json index 934992518..7a02c430f 100644 --- a/renovate.json +++ b/renovate.json @@ -61,8 +61,15 @@ "stacks/nodejs/**", "stacks/go/1.0.2/**", "stacks/go/1.1.0/**", + "stacks/go/1.2.0/**", + "stacks/go/1.2.1/**", + "stacks/go/1.3.0/**", + "stacks/go/1.3.1/**", "stacks/go/2.0.0/**", "stacks/go/2.1.0/**", + "stacks/go/2.2.0/**", + "stacks/go/2.3.0/**", + "stacks/go/2.4.0/**", "stacks/nodejs/2.1.1/**", "stacks/nodejs-angular/2.0.2/**", "stacks/nodejs-nextjs/1.0.3/**", diff --git a/stacks/go/1.2.0/devfile.yaml b/stacks/go/1.2.0/devfile.yaml index 09611abd9..ee0dbae9a 100644 --- a/stacks/go/1.2.0/devfile.yaml +++ b/stacks/go/1.2.0/devfile.yaml @@ -6,6 +6,7 @@ metadata: icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg tags: - Go + - Deprecated projectType: Go language: Go provider: Red Hat diff --git a/stacks/go/1.2.1/devfile.yaml b/stacks/go/1.2.1/devfile.yaml index 96bd382a2..d6020db6b 100644 --- a/stacks/go/1.2.1/devfile.yaml +++ b/stacks/go/1.2.1/devfile.yaml @@ -6,6 +6,7 @@ metadata: icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg tags: - Go + - Deprecated projectType: Go language: Go provider: Red Hat diff --git a/stacks/go/1.3.0/devfile.yaml b/stacks/go/1.3.0/devfile.yaml index 1bfa70748..475bedccf 100644 --- a/stacks/go/1.3.0/devfile.yaml +++ b/stacks/go/1.3.0/devfile.yaml @@ -6,6 +6,7 @@ metadata: icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg tags: - Go + - Deprecated projectType: Go language: Go provider: Red Hat diff --git a/stacks/go/1.3.1/devfile.yaml b/stacks/go/1.3.1/devfile.yaml index 16ef7377c..8f43eda87 100644 --- a/stacks/go/1.3.1/devfile.yaml +++ b/stacks/go/1.3.1/devfile.yaml @@ -6,6 +6,7 @@ metadata: icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg tags: - Go + - Deprecated projectType: Go language: Go provider: Red Hat diff --git a/stacks/go/2.2.0/devfile.yaml b/stacks/go/2.2.0/devfile.yaml index bf6ba1340..f6c5d8e4c 100644 --- a/stacks/go/2.2.0/devfile.yaml +++ b/stacks/go/2.2.0/devfile.yaml @@ -6,6 +6,7 @@ metadata: icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg tags: - Go + - Deprecated projectType: Go language: Go provider: Red Hat diff --git a/stacks/go/2.3.0/devfile.yaml b/stacks/go/2.3.0/devfile.yaml index 08a87bfff..255b1da9a 100644 --- a/stacks/go/2.3.0/devfile.yaml +++ b/stacks/go/2.3.0/devfile.yaml @@ -6,6 +6,7 @@ metadata: icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg tags: - Go + - Deprecated projectType: Go language: Go provider: Red Hat diff --git a/stacks/go/2.4.0/devfile.yaml b/stacks/go/2.4.0/devfile.yaml index 584fab074..a6c12d827 100644 --- a/stacks/go/2.4.0/devfile.yaml +++ b/stacks/go/2.4.0/devfile.yaml @@ -6,6 +6,7 @@ metadata: icon: https://raw.githubusercontent.com/devfile-samples/devfile-stack-icons/main/golang.svg tags: - Go + - Deprecated projectType: Go language: Go provider: Red Hat diff --git a/tests/validate_devfile_schemas/validate_devfile_schemas_test.go b/tests/validate_devfile_schemas/validate_devfile_schemas_test.go index f3f4d4fb0..fa07b188f 100644 --- a/tests/validate_devfile_schemas/validate_devfile_schemas_test.go +++ b/tests/validate_devfile_schemas/validate_devfile_schemas_test.go @@ -47,8 +47,10 @@ var _ = Describe("validate stacks follow the schema", func() { It(fmt.Sprintf("stack: %s", dir), func() { path := filepath.Join(stacksPath, dir, "devfile.yaml") + convertKubernetesContentInUri := false parserArgs := parser.ParserArgs{ - Path: path, + Path: path, + ConvertKubernetesContentInUri: &convertKubernetesContentInUri, } GinkgoWriter.Println(parserArgs)