From 112d0db4189f0549a246c6735852a6d85c67c3f4 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 16 Dec 2025 07:45:01 +0100 Subject: [PATCH 1/5] Update sub modules --- .gitmodules | 2 +- vendor/circom-compat-ffi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 75cbe98..4c96b5e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "vendor/circom-compat-ffi"] path = vendor/circom-compat-ffi - url = https://github.com/codex-storage/circom-compat-ffi.git + url = https://github.com/logos-storage/circom-compat-ffi.git diff --git a/vendor/circom-compat-ffi b/vendor/circom-compat-ffi index 7bc5482..c5d895d 160000 --- a/vendor/circom-compat-ffi +++ b/vendor/circom-compat-ffi @@ -1 +1 @@ -Subproject commit 7bc5482c860c9e32660f4480ccfa3dd89d4dfbb6 +Subproject commit c5d895d164a878a60d4f2656a984987ee5c06aa4 From 2fc1f231b5f08cafccfd5767080bf127b825e58f Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 16 Dec 2025 07:52:13 +0100 Subject: [PATCH 2/5] Update nim version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d2d801..c617ca8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: nim: - - '2.0.14' + - '2.2.4' os: - ubuntu-latest - windows-latest From 48d012f173363522a39bb58ba69b6758394901ef Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 16 Dec 2025 08:23:52 +0100 Subject: [PATCH 3/5] Fix Rust version --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c617ca8..468a2b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: nim: - - '2.2.4' + - '2.0.14' os: - ubuntu-latest - windows-latest @@ -26,11 +26,11 @@ jobs: run: | rustup set default-host x86_64-pc-windows-gnu rustup update stable - rustup default stable + rustup default 1.85.0 - name: Set rust ${{ matrix.os }} if: matrix.os != 'windows-latest' - run: rustup update stable && rustup default stable + run: rustup update stable && rustup default 1.85.0 - name: Setup nim uses: jiro4989/setup-nim-action@v1 From 582bf7dd6e1a4310e16f1588ddbb81d0fa065b4c Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 16 Dec 2025 08:26:08 +0100 Subject: [PATCH 4/5] Update nim version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 468a2b8..2b2d9ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: nim: - - '2.0.14' + - '2.2.4' os: - ubuntu-latest - windows-latest From 756338b46fe6a8ea150b9cff3d7a2b2eb1f36325 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 16 Dec 2025 08:37:56 +0100 Subject: [PATCH 5/5] Try to use setup nim action v2 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b2d9ce..2843d0c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: run: rustup update stable && rustup default 1.85.0 - name: Setup nim - uses: jiro4989/setup-nim-action@v1 + uses: jiro4989/setup-nim-action@v2 with: nim-version: ${{ matrix.nim }} repo-token: ${{ secrets.GITHUB_TOKEN }}