From 80cc0fcc6186cb8c71d822bc748d26b717e0b79d Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Mon, 22 Mar 2021 22:27:57 +0100 Subject: [PATCH] tests: use dex from ghcr Signed-off-by: Jens Langhammer --- SECURITY.md | 2 +- tests/e2e/test_source_oauth.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 16f1f7f87..63fe38328 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,9 +4,9 @@ | Version | Supported | | ---------- | ------------------ | -| 2021.1.x | :white_check_mark: | | 2021.2.x | :white_check_mark: | | 2021.3.x | :white_check_mark: | +| 2021.4.x | :white_check_mark: | ## Reporting a Vulnerability diff --git a/tests/e2e/test_source_oauth.py b/tests/e2e/test_source_oauth.py index 8c7541106..85dbab6ab 100644 --- a/tests/e2e/test_source_oauth.py +++ b/tests/e2e/test_source_oauth.py @@ -75,11 +75,11 @@ class TestSourceOAuth2(SeleniumTestCase): def get_container_specs(self) -> Optional[dict[str, Any]]: return { - "image": "quay.io/dexidp/dex:v2.24.0", + "image": "ghcr.io/dexidp/dex:v2.28.1", "detach": True, "network_mode": "host", "auto_remove": True, - "command": "serve /config.yml", + "command": "dex serve /config.yml", "healthcheck": Healthcheck( test=["CMD", "wget", "--spider", "http://localhost:5556/dex/healthz"], interval=5 * 100 * 1000000,