From 9a07d662712d6074dabcfb2b6fb310eaaca2186a Mon Sep 17 00:00:00 2001 From: thepetk Date: Tue, 3 Sep 2024 16:42:06 +0100 Subject: [PATCH 1/3] Add link to security policy Signed-off-by: thepetk --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 48738559..60d54ec9 100644 --- a/README.md +++ b/README.md @@ -198,6 +198,10 @@ In order to download a binary file: * Go to the release you are interested for `https://github.com/devfile/alizer/releases/tag/` * In the **Assets** section you will see the list of generated binaries for the release. The names of the binaries are following the template `alizer-{version}-{ostype}-{architecture}`. +## Security + +Further information for the devfile organization security policy can be found [here](https://github.com/devfile/api/blob/main/SECURITY.md) + ## Feedback & Questions If you discover an issue please file a bug, and we will fix it as soon as possible. From 5c7ff1bc311602b3dffb4d5965b8aa3e76a41d1f Mon Sep 17 00:00:00 2001 From: thepetk Date: Tue, 3 Sep 2024 17:08:28 +0100 Subject: [PATCH 2/3] Fix test issue Signed-off-by: thepetk --- test/check_registry/check_registry_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/check_registry/check_registry_test.go b/test/check_registry/check_registry_test.go index 57b4f88f..a201641c 100644 --- a/test/check_registry/check_registry_test.go +++ b/test/check_registry/check_registry_test.go @@ -59,8 +59,8 @@ func TestGetStarterProjects(t *testing.T) { }{ { name: "Case 1: Validated registries urls", - devfileUrl: "https://registry.devfile.io/devfiles/java-maven", - expectedUrl: "https://github.com/odo-devfiles/springboot-ex.git", + devfileUrl: "https://registry.devfile.io/devfiles/python", + expectedUrl: "https://github.com/devfile-samples/python-ex.git", }, } @@ -75,4 +75,4 @@ func TestGetStarterProjects(t *testing.T) { } }) } -} \ No newline at end of file +} From e2ea363ac23a84cd44a497ae254e26db6895eb1a Mon Sep 17 00:00:00 2001 From: thepetk Date: Wed, 4 Sep 2024 08:56:27 +0100 Subject: [PATCH 3/3] Fix test git url Signed-off-by: thepetk --- test/check_registry/check_registry_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/check_registry/check_registry_test.go b/test/check_registry/check_registry_test.go index a201641c..1f992296 100644 --- a/test/check_registry/check_registry_test.go +++ b/test/check_registry/check_registry_test.go @@ -60,7 +60,7 @@ func TestGetStarterProjects(t *testing.T) { { name: "Case 1: Validated registries urls", devfileUrl: "https://registry.devfile.io/devfiles/python", - expectedUrl: "https://github.com/devfile-samples/python-ex.git", + expectedUrl: "https://github.com/devfile-samples/python-ex", }, }