From 3ac1dfbf4c55a0ff6cec7074924eb81b7323d3b8 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Fri, 17 May 2024 14:38:57 +0200 Subject: [PATCH] .github: ensure clean and recursive submodules Minor change, mostly for consistency across repos. [skip ci] Signed-off-by: Joachim Wiberg --- .github/workflows/build.yml | 3 ++- .github/workflows/regression.yml | 3 ++- .github/workflows/release.yml | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 065b1a9f..135a2e2f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,8 @@ jobs: steps: - uses: actions/checkout@v4 with: - submodules: 'true' + clean: true + submodules: recursive - name: Set Build Variables id: vars diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index c6819f9c..c7951eaa 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -21,7 +21,8 @@ jobs: steps: - uses: actions/checkout@v4 with: - submodules: 'true' + clean: true + submodules: recursive - name: Clean up cruft ... run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 922d42dc..4e4c513a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,8 @@ jobs: steps: - uses: actions/checkout@v4 with: - submodules: 'true' + clean: true + submodules: recursive - name: Set Release Variables id: vars