this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[GitHub Actions] Let "actions/checkout" Recursively Clone Project

Thomas A. c631456f b0be2397

+8 -12
+8 -12
.github/workflows/actions.yaml
··· 6 6 build-deb: 7 7 runs-on: ubuntu-latest 8 8 steps: 9 - - uses: actions/checkout@v4 10 - 11 - - name: Checkout submodules 12 - shell: bash 13 - run: | 14 - git submodule update --init --recursive --depth=1 9 + - name: Checkout Darling 10 + uses: actions/checkout@v4 11 + with: 12 + submodules: recursive 15 13 16 14 - name: Install dependencies 17 15 run: | ··· 40 38 build-dsc: 41 39 runs-on: ubuntu-latest 42 40 steps: 43 - - uses: actions/checkout@v4 44 - 45 - - name: Checkout submodules 46 - shell: bash 47 - run: | 48 - git submodule update --init --recursive --depth=1 41 + - name: Checkout Darling 42 + uses: actions/checkout@v4 43 + with: 44 + submodules: recursive 49 45 50 46 - name: Install dependencies 51 47 run: |