diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d07d85dd4a..178c52d44a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -12,7 +12,7 @@ jobs: if: github.event_name != 'push' || (github.event_name == 'push' && github.ref != 'refs/heads/main') steps: - name: Checkout repo - uses: actions/checkout@v3.x + uses: actions/checkout@v3 with: submodules: true # Fetch Hugo themes (true OR recursive) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 8f1cb59af3..942363d8ac 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -11,7 +11,7 @@ jobs: if: github.event_name != 'push' || (github.event_name == 'push' && github.ref == 'refs/heads/main') steps: - name: Checkout repo - uses: actions/checkout@v3.x + uses: actions/checkout@v3 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 72b6d56550..a7d7b6a8fb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v3.x + uses: actions/checkout@v3 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod