From f6cdf95391820fb731a7dff4d9d6052e806af3fe Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Sat, 7 Feb 2026 19:59:28 +0000 Subject: [PATCH 1/2] Fix downgrade.yml workflow: add missing version arguments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The downgrade workflow requires: - `version` argument in setup-julia step - `julia_version` argument in julia-downgrade-compat action Without these, the workflow may fail or use incorrect Julia versions. This PR ensures both arguments are properly specified to match the matrix version. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/downgrade.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/downgrade.yml b/.github/workflows/downgrade.yml index b48a4ee..ae88737 100644 --- a/.github/workflows/downgrade.yml +++ b/.github/workflows/downgrade.yml @@ -21,9 +21,11 @@ jobs: - uses: julia-actions/setup-julia@v1 with: version: ${{ matrix.version }} + julia_version: ${{ matrix.version }} - uses: julia-actions/julia-downgrade-compat@v2 with: skip: Pkg,TOML,InteractiveUtils,Random,LinearAlgebra + julia_version: ${{ matrix.version }} - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 From 7d5884edc7c90feda9ab8e47c0b8fa612188e247 Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Sat, 7 Feb 2026 15:03:35 -0500 Subject: [PATCH 2/2] fixup --- .github/workflows/downgrade.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/downgrade.yml b/.github/workflows/downgrade.yml index ae88737..824a364 100644 --- a/.github/workflows/downgrade.yml +++ b/.github/workflows/downgrade.yml @@ -21,7 +21,6 @@ jobs: - uses: julia-actions/setup-julia@v1 with: version: ${{ matrix.version }} - julia_version: ${{ matrix.version }} - uses: julia-actions/julia-downgrade-compat@v2 with: skip: Pkg,TOML,InteractiveUtils,Random,LinearAlgebra