tests: use dex from ghcr

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-03-22 22:27:57 +01:00
parent ddf09a4cf5
commit 80cc0fcc61
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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,