From 4778fe4d43357c0ebe312ca1ff66ccf3c5a45a94 Mon Sep 17 00:00:00 2001 From: dev Date: Thu, 16 May 2024 11:13:32 -0400 Subject: [PATCH] Install GIT for checkout --- .github/workflows/deployment_test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/deployment_test.yml b/.github/workflows/deployment_test.yml index e8b5197c..3fabd02b 100644 --- a/.github/workflows/deployment_test.yml +++ b/.github/workflows/deployment_test.yml @@ -13,6 +13,12 @@ jobs: container: image: ubuntu:22.04 steps: + - name: Install git + # Installing git for checkout action + run: | + apt update + export DEBIAN_FRONTEND=noninteractive + apt-get install -y git - name: Checkout uses: actions/checkout@v4 with: