From 996d1458e21f035cd3162603c818442c5db0ff05 Mon Sep 17 00:00:00 2001 From: John Wesley Walker III <81404201+jww3@users.noreply.github.com> Date: Sat, 17 Feb 2024 03:19:14 +0100 Subject: [PATCH] Second attempt to install git via `apt-get` --- .github/workflows/test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db833b9..511dc56 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -190,7 +190,7 @@ jobs: test-proxy: runs-on: ubuntu-latest container: - image: fdev321123/ubuntu-with-git:latest + image: ubuntu:latest options: --dns 127.0.0.1 services: squid-proxy: @@ -200,6 +200,11 @@ jobs: env: https_proxy: http://squid-proxy:3128 steps: + - name: Install Git + run: | + apt-get update + apt-get install git + # Clone this repo - name: Checkout uses: actions/checkout@v3