From ba0e5074cc309c12c8f8a007ead86e165fc5eb02 Mon Sep 17 00:00:00 2001 From: wooferzfg Date: Sun, 19 Apr 2020 01:06:23 -0500 Subject: [PATCH] Use actions/checkout for pulling submodules --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0561f48..f7feafb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,9 +13,8 @@ jobs: steps: - name: Checkout commit uses: actions/checkout@v2 - - - name: Checkout submodules - run: git submodule update --init --recursive + with: + submodules: recursive - name: Set CURRENT_TWO_WEEKS for use in cache keys run: echo "::set-env name=CURRENT_TWO_WEEKS::$(($(date +%-V) / 2))"