From 30461e0f30cc4d060288457920c4c87e9bef22f5 Mon Sep 17 00:00:00 2001 From: Arnav Kapoor Date: Mon, 6 Jul 2026 00:42:54 +0530 Subject: [PATCH 1/6] downgrade --- .github/workflows/CI.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 974022e..fbf45fd 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -59,6 +59,28 @@ jobs: if: matrix.version == '1.10' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' with: files: lcov.info + downgrade: + name: Downgrade + runs-on: ubuntu-latest + timeout-minutes: 60 + permissions: + actions: write + contents: read + steps: + - uses: actions/checkout@v7 + - uses: julia-actions/setup-julia@v3 + with: + version: '1.10' + arch: x64 + - uses: julia-actions/julia-downgrade-compat@v2 + with: + projects: '.' + mode: 'deps' + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 + with: + allow_reresolve: false + force_latest_compatible_version: false docs: name: Documentation runs-on: ubuntu-latest From 11143c54064d1a853cd93193ee463972ae8ef0e9 Mon Sep 17 00:00:00 2001 From: Arnav Kapoor Date: Mon, 6 Jul 2026 00:53:46 +0530 Subject: [PATCH 2/6] try again --- .github/workflows/CI.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fbf45fd..a1b52e1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -72,15 +72,14 @@ jobs: with: version: '1.10' arch: x64 - - uses: julia-actions/julia-downgrade-compat@v2 - with: - projects: '.' - mode: 'deps' + - name: Downgrade dependencies to minimum compatible versions + shell: julia --project=. --color=yes {0} + run: | + import Pkg + Pkg.downgrade() + Pkg.status() - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - with: - allow_reresolve: false - force_latest_compatible_version: false docs: name: Documentation runs-on: ubuntu-latest From 082ab0bac2abaff58ef7a530778a80b897c7f24a Mon Sep 17 00:00:00 2001 From: Arnav Kapoor Date: Mon, 6 Jul 2026 00:59:29 +0530 Subject: [PATCH 3/6] try - 2 --- .github/workflows/CI.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a1b52e1..867de06 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -72,12 +72,10 @@ jobs: with: version: '1.10' arch: x64 - - name: Downgrade dependencies to minimum compatible versions - shell: julia --project=. --color=yes {0} - run: | - import Pkg - Pkg.downgrade() - Pkg.status() + - uses: julia-actions/julia-downgrade-compat@v1 + with: + projects: '.' + strict: 'v0' - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 docs: From cd44cb15a1b8e5e51b1493b1b704e0e8f31a80f5 Mon Sep 17 00:00:00 2001 From: Arnav Kapoor Date: Mon, 6 Jul 2026 01:12:50 +0530 Subject: [PATCH 4/6] try - 3 --- .github/workflows/CI.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 867de06..f891fb8 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -72,10 +72,11 @@ jobs: with: version: '1.10' arch: x64 - - uses: julia-actions/julia-downgrade-compat@v1 + - uses: julia-actions/julia-downgrade-compat@v2 with: projects: '.' - strict: 'v0' + mode: forcedeps + skip: Libdl,Test - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 docs: From 68779681a384eea76980ccf877e3887ed730fe53 Mon Sep 17 00:00:00 2001 From: Arnav Kapoor Date: Mon, 6 Jul 2026 06:38:27 +0530 Subject: [PATCH 5/6] try -4 --- .github/workflows/CI.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f891fb8..bd436ef 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -75,8 +75,7 @@ jobs: - uses: julia-actions/julia-downgrade-compat@v2 with: projects: '.' - mode: forcedeps - skip: Libdl,Test + mode: deps - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 docs: From f707c37f08b94a201fc491edd3e210dbc6341151 Mon Sep 17 00:00:00 2001 From: Arnav Kapoor Date: Mon, 6 Jul 2026 06:46:13 +0530 Subject: [PATCH 6/6] try - 5 --- .github/workflows/CI.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index bd436ef..d6e5774 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -70,12 +70,14 @@ jobs: - uses: actions/checkout@v7 - uses: julia-actions/setup-julia@v3 with: - version: '1.10' + version: '1.12' arch: x64 - uses: julia-actions/julia-downgrade-compat@v2 with: projects: '.' - mode: deps + mode: forcedeps + skip: Libdl,Test + julia_version: '1.10' - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 docs: