From 37805d21bde1e292f61424fcd67d1221e95b2eba Mon Sep 17 00:00:00 2001
From: Johannes Schindelin <johannes.schindelin@gmx.de>
Date: Wed, 31 Jan 2024 15:29:58 +0100
Subject: [PATCH] ci: fix `test-proxy`

According to https://hub.docker.com/r/ubuntu/squid, the proxy won't be
available via http://squid.proxy:3128/ but instead via
http://localhost:3128/.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
 .github/workflows/test.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 15996ee..d68cb95 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -183,7 +183,7 @@ jobs:
         ports:
           - 3128:3128
     env:
-      https_proxy: http://squid-proxy:3128
+      https_proxy: http://127.0.0.1:3128
     steps:
       # Clone this repo
       - name: Checkout