From 74559495416f0c92b617a6951b8d1e44b8d134db Mon Sep 17 00:00:00 2001 From: Igor Artamonov Date: Wed, 18 Mar 2020 22:18:03 -0400 Subject: [PATCH] problem: integration test fails with "Cannot find '.git' directory" --- .github/workflows/test.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3ba14503..1d1d3407 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -20,8 +20,9 @@ jobs: integration-test: runs-on: ubuntu-latest - # Docker Hub image that `container-job` executes in - container: node:10.18-jessie + # Docker Hub image that `container-job` executes in. + # Use -buster which comes with Git 2.20, because action/checkout needs Git 2.18+ to make correct clone (needed by Gradle version plugin) + container: node:12-buster services: redis: image: redis