From 572f5de1b05395c6e6e05dae84f64f5c48ca5951 Mon Sep 17 00:00:00 2001
From: John Wesley Walker III <81404201+jww3@users.noreply.github.com>
Date: Fri, 16 Feb 2024 18:28:36 +0100
Subject: [PATCH] Experiment on `test-proxy`

Try pointing `test-proxy` at a custom container image `fdev321123/ubuntu-with-git` (courtesy of @fhammerl)
---
 .github/workflows/test.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index c5b63a6..7bea617 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -190,7 +190,7 @@ jobs:
   test-proxy:
     runs-on: ubuntu-latest
     container:
-      image: ubuntu:latest
+      image: fdev321123/ubuntu-with-git:latest
       options: --dns 127.0.0.1
     services:
       squid-proxy:
@@ -200,10 +200,10 @@ jobs:
     env:
       https_proxy: http://squid-proxy:3128
     steps:
-      - name:  Install Git
-        run: |
-          apt-get update
-          apt-get install git
+      # - name:  Install Git
+      #   run: |
+      #     apt-get update
+      #     apt-get install git
           
       # Clone this repo
       - name: Checkout