From 4de8765532cd1041e3263724972a0951dff4d8f4 Mon Sep 17 00:00:00 2001 From: Hayato Date: Sun, 3 Nov 2024 22:39:57 +0900 Subject: [PATCH] Add GitHub Actions clone recursively --- .github/workflows/develop_branch.yml | 2 ++ .github/workflows/main_branch.yml | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/develop_branch.yml b/.github/workflows/develop_branch.yml index fb9e347..ae75be6 100644 --- a/.github/workflows/develop_branch.yml +++ b/.github/workflows/develop_branch.yml @@ -80,6 +80,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + submodules: "recursive" - name: Prepare environments (ansible-galaxy install role) run: | diff --git a/.github/workflows/main_branch.yml b/.github/workflows/main_branch.yml index 240f68b..d866848 100644 --- a/.github/workflows/main_branch.yml +++ b/.github/workflows/main_branch.yml @@ -82,6 +82,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + submodules: "recursive" - name: Prepare environments (ansible-galaxy install role) run: | @@ -127,6 +129,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + submodules: "recursive" - name: Prepare environments (ansible-galaxy install role) run: |