From 4d1347db9f84bc71d0a6e71a6947d14c2e4729f8 Mon Sep 17 00:00:00 2001
From: John Wesley Walker III <81404201+jww3@users.noreply.github.com>
Date: Wed, 21 Feb 2024 12:57:34 +0100
Subject: [PATCH] `test-proxy` now uses newly-minted `test-ubuntu-git`
 container image from ghcr.io

---
 .github/workflows/test.yml | 15 +--------------
 1 file changed, 1 insertion(+), 14 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6f6cd55..d8c83ac 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -187,20 +187,10 @@ jobs:
       - name: Verify basic
         run: __test__/verify-basic.sh --archive
 
-  inspect:
-    runs-on: ubuntu-latest
-    steps:
-      - run:  ls -all /usr/bin
-
   test-proxy:
     runs-on: ubuntu-latest
     container:
-      image: ubuntu:latest
-      volumes:
-        - /usr/bin/git:/mapped/bin/git
-        - /usr/bin/git-lfs:/mapped/bin/git-lfs
-        - /usr/bin/git-ftp:/mapped/bin/git-ftp
-        - /usr/bin/git-shell:/mapped/bin/git-shell
+      image: ghcr.io/actions/test-ubuntu-git:main.20240221.114913.703z
       options: --dns 127.0.0.1
     services:
       squid-proxy:
@@ -210,9 +200,6 @@ jobs:
     env:
       https_proxy: http://squid-proxy:3128
     steps:
-      - name: Update System Path
-        run:  echo "/mapped/bin" >> $GITHUB_PATH
-
       # Clone this repo
       - name: Checkout
         uses: actions/checkout@v3