From c61aaa37ca0caaf601b934f011867f17cf2c942d Mon Sep 17 00:00:00 2001 From: Juan Ibiapina Date: Mon, 24 Nov 2025 18:29:13 +0100 Subject: [PATCH] chore: Fix build after upgrade to checkout@v6 --- .github/workflows/test.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 62a18de..cd48d90 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,17 +8,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 + with: + submodules: recursive - name: Install rust stable uses: actions-rs/toolchain@v1 with: toolchain: stable override: true - - name: Checkout submodules - shell: bash - run: | - auth_header="$(git config --local --get http.https://github.com/.extraheader)" - git submodule sync --recursive - git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 - name: Install bats run: git clone --depth 1 https://github.com/sstephenson/bats.git - name: Run tests