From 211c2d5318f35b0b0cd3ad20fdc7ca3f579f8f7d Mon Sep 17 00:00:00 2001 From: Max Graey Date: Thu, 2 Apr 2026 00:19:28 +0300 Subject: [PATCH 1/2] Use actions/checkout@v6 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3b6e6ef3..047c188f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,7 +44,7 @@ jobs: cmakeVersion: 3.31.11 ninjaVersion: latest - name: "Check out repository" - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: true - name: "Set up repository" From 5700b4c1b16296a3026a1735d96093bf1d5f6865 Mon Sep 17 00:00:00 2001 From: Max Graey Date: Thu, 2 Apr 2026 02:59:21 +0300 Subject: [PATCH 2/2] revert old submodule mechanics --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 047c188f..b7c99aeb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,7 +46,7 @@ jobs: - name: "Check out repository" uses: actions/checkout@v6 with: - submodules: true + submodules: false - name: "Set up repository" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -59,7 +59,7 @@ jobs: # If not a PR, undo detached head git checkout "${GITHUB_REF:11}" fi - git submodule update --init --remote --recursive --depth 1 + git submodule update --init --remote --merge --recursive cd ./binaryen git log -n1 cd ..