From 1a780b630f781102199c69b31662487f247bc786 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Mon, 7 Nov 2022 16:36:38 -0700 Subject: [PATCH] Remove version req from searx instance auto-update The majority of searx instances returned by https://searx.space/data/instances.json seem to be running non-release versions of searx (i.e. versions like "2022.11.06-ae54c7d5" and not "1.0.0"). Since the version itself doesn't indicate reliability alone imo, I don't think it's necessary to exclude instances based on this criteria in the auto-update nightly build. --- .github/workflows/update-instances.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/update-instances.yml b/.github/workflows/update-instances.yml index 39872c7..e8fc9c7 100644 --- a/.github/workflows/update-instances.yml +++ b/.github/workflows/update-instances.yml @@ -63,7 +63,6 @@ jobs: to_entries[] | select(.value.network_type == "normal") | select(.value.version | . != null) | - select(.value.version | startswith("1.0.0")) | select(.value.network.asn_privacy == 0) | select(.value.http.error == null) | select(.value.tls.grade == "A+" or .value.tls.grade == "A") |